Ben Turner
152d030360
Bug 1112702 - Make IndexedDB transactions non-durable by default, r=khuey.
2015-01-25 22:30:09 -08:00
Ben Turner
3075973d0c
Bug 1131766 - Use a simpler thread model for IndexedDB transactions, r=khuey.
2014-12-02 12:01:44 -08:00
Ben Turner
04cd5da921
Bug 866846 - Use WAL journal mode for IndexedDB databases, r=janv.
2015-01-24 08:16:26 -08:00
Ben Turner
c200992dcd
Revert unintentional change to crash reporting infra in changeset ce2692d64bcf DONTBUILD
2015-03-31 15:51:24 -07:00
Wes Kocher
4f66d44d5b
Backed out changeset 6b886fbb3e48 (bug 1148032) for mochitest-chrome orange on b2g emulators
2015-03-31 15:48:25 -07:00
Ben Turner
d56515da2a
Bug 1112620 - Fix invalidated version change transactions, r=khuey.
2015-03-31 15:35:12 -07:00
Ben Turner
056431018e
Bug 1071360 - Fix async storage connection closing when open fails, r=asuth.
2015-03-27 22:45:28 -07:00
Jan Varga
b4996c2b7c
Bug 1144806, Fix test_temporary_storage to not depend on database sizes. r=bent.
2015-03-25 09:49:37 -07:00
Andrea Marchesini
c49f218431
Bug 1143526 - DataStore API should create DOMError with proper error messages, r=fabrice
2015-03-31 23:23:52 +01:00
Jim Chen
cdd399a2d6
Bug 1149189 - Add test for setting the same composing text; r=esawin
2015-03-31 18:20:27 -04:00
Jim Chen
60406e63b7
Bug 1149189 - Add dummy text change when setting composition to the same text; r=esawin
2015-03-31 18:20:27 -04:00
Jim Chen
a12a40c194
Bug 1149189 - Backout e75d824c730d "Force Gecko update on endBatchEdit for range updates"; r=esawin
2015-03-31 18:20:27 -04:00
Jim Chen
3e01b49d16
Bug 1149172 - Query IMEStateManager for composition state; r=esawin
2015-03-31 18:20:27 -04:00
Jim Chen
4b5e6a3e0c
Bug 1149172 - Send well-formed IME events; r=esawin
2015-03-31 18:20:27 -04:00
Jim Chen
ccd74bbaee
Bug 1149172 - Fix small bugs in IME focus handshake; r=esawin
2015-03-31 18:20:27 -04:00
Mark Goodwin
d7b3e00bed
Bug 1138848 - Tests for modified OneCRL (r=keeler, unfocused)
...
* * *
* * *
give blocklist debug info to NSPR_LOG
2015-03-31 15:10:19 -07:00
Mark Goodwin
1b0d6fb879
Bug 1138848 - Modify OneCRL blocklist for subject / public key blocking (r=keeler, unfocused)
2015-03-31 15:10:09 -07:00
Mats Palmgren
2fa6fbc270
Bug 1149785 - Make nsIWidget::ClientToWindowSize use LayoutDeviceIntSize instead of the unit-less nsIntSize. r=roc
2015-03-31 22:09:03 +00:00
Mats Palmgren
70fe7341e9
Bug 1149784 - Make nsSubDocumentFrame::GetMarginAttributes use CSSIntSize instead of the unit-less nsIntSize. r=roc
2015-03-31 22:09:02 +00:00
Andreas Tolfsen
6a54f2978a
Bug 1149625: Order errors by name rather that status code
...
This patch has no functional changes, apart from correctly naming
InvalidElementStateError and exporting it. It's not currently in use.
r=dburns
--HG--
extra : rebase_source : 92b1ddca4cf73a48f7ddeb26e51881e23d63adce
2015-03-31 18:00:32 +01:00
L. David Baron
e90b72b9db
Bug 847287 patch 13 - Apply animations/transitions on the layer in the order that reflects how they override, rather than the opposite. r=birtles
...
This independently would have fixed some of the problems fixed in this
bug. It would not have fixed them fully, though, since it would not
have prevented us from sending animations being covered up by !important
rules to the compositor.
2015-03-31 15:05:55 -07:00
L. David Baron
1fe6a61ae9
Bug 847287 patch 12 - Check mWinsInCascade for all callers of GetAnimationOfProperty/HasAnimationOfProperty. r=birtles
...
This patch (after stepping through the call graph) affects the following
places:
* CommonAnimationManager::GetAnimationsForCompositor, which is used
only by nsDisplayListBuilder::AddAnimationsAndTransitionsToLayer,
which already checks the individual animations (so really no change)
* AnimationPlayerCollection::CanThrottleAnimation
* ActiveLayerTracker::IsStyleAnimated
* nsLayoutUtils::HasAnimationsForCompositor
* nsLayoutUtils::HasAnimations (which is used only to check whether we
can make the 0-opacity optimization)
I believe it makes sense to change all of these locations (although in
the long term we want to throttle (or similar) more animations).
Without this patch, I believe we're forcing the creation of an opacity
layer because we think we have animations to send to it.
2015-03-31 15:05:55 -07:00
L. David Baron
d192a6e11d
Bug 847287 patch 11 - Only check that we can throttle animations once per refresh cycle (or invalidation of style rule), to make it cheaper to call EnsureStyleRuleFor more than once per refresh cycle. r=birtles
...
This saves some extra work that we don't need to do.
Mechanically, the patch moves a chunk of code that is around the last
part of the function and converts it to an early return that's slightly
earlier than that last part, thus also including the skipping of the
throttling checks in what we skip for the early return.
I want to do this here since patch 9 introduces a new call to
EnsureStyleRuleFor.
2015-03-31 15:05:55 -07:00
L. David Baron
703ab1d2b9
Bug 847287 patch 10 - Only call CheckNeedsRefresh if we might have changed mNeedsRefreshes, to make it cheaper to call EnsureStyleRuleFor more than once per refresh cycle. r=birtles
...
This saves some extra work that we don't need to do.
I want to do this here since patch 9 introduces a new call to
EnsureStyleRuleFor.
2015-03-31 15:05:55 -07:00
L. David Baron
cdb6523104
Bug 847287 patch 9 - Use fully-updated style rule for animations when updating cascade results for transitions. r=birtles
...
I don't have a test case that requires this, but it seems like a good
idea. (It was an incorrect theory for fixing a test failure that I was
debugging, but still seems worth doing.)
2015-03-31 15:05:55 -07:00
L. David Baron
7a006d4d0a
Bug 847287 patch 8 - Only update transition manager's cascade results when an animation starts or stops being in effect. r=birtles
...
This avoids some extra work that was added in bug 1125455 now that we
have a mechanism for detecting when animations start and stop being in
effect (introduced in patch 7).
This is also needed to prevent infinite recursion in patch 9.
2015-03-31 15:05:54 -07:00
L. David Baron
df063f161f
Bug 847287 patch 7 - Dynamically update cascade results when animations start or stop being in effect. r=birtles
...
This is an additional part of the main work in this bug; it keeps
mWinsInCascade updated in cases where we need to update it.
2015-03-31 15:05:54 -07:00
L. David Baron
a7bdf3d859
Bug 847287 patch 6 - Set mWinsInCascade for CSS Animations. r=birtles
...
This is the main patch for the bug; it makes us use the mechanism added
in bug 1125455 to avoid sending animations that aren't currently
applying to the compositor.
Patch 7 is needed to make this code rerun in all the cases where we need
to rerun it, though.
2015-03-31 15:05:54 -07:00
L. David Baron
538784230b
Bug 847287 patch 5 - Add method to update animations on layer. r=birtles
...
This does somewhat less work than PostRestyleForAnimation, although I
believe PostRestyleForAnimation would be a sufficient alternative.
This is used in patch 6.
2015-03-31 15:05:54 -07:00
L. David Baron
4fbe445174
Bug 847287 patch 4 - Add a method to nsRuleNode that reports the properties overriding a CSS animation. r=birtles
...
This is used in patch 6.
2015-03-31 15:05:54 -07:00
L. David Baron
320d6fe7aa
Bug 847287 patch 3 - Add assertions about consistency of the flags for animating on the compositor. r=birtles
...
These flags were added in patch 2.
2015-03-31 15:05:54 -07:00
L. David Baron
d5c71fb143
Bug 847287 patch 2 - Add flag for CSS properties that can be animated on the compositor. r=birtles
...
Patch 3 adds sanity-checks to check these flags against other equivalent
data.
This flag is used in patch 5 and patch 6.
2015-03-31 15:05:54 -07:00
L. David Baron
81ab847386
Bug 847287 patch 1 - Add additional tests. r=birtles
...
All of the todos will be fixed by later patches in this bug (as will
some already-existing todos in the same file).
2015-03-31 15:05:54 -07:00
Zachary Carter
8f16d648f6
Bug 1148565 - Add the default profile image to Aero theme r=markh
2015-03-31 15:03:11 -07:00
Zachary Carter
5d44db928b
Bug 1140627: Make FxAccountsCommon.js variable OAUTH_SERVER_ERRNO_OFFSET non-const, to fix JS warning. r=dholbert
2015-03-31 15:01:31 -07:00
Byron Campen [:bwc]
c72b942b7e
Bug 1148649: Reenable video multistream mochitests on debug e10s. r=drno
...
--HG--
extra : rebase_source : 5e29d37c289cb67148bafe7947191bb6de1338a6
extra : amend_source : b89129bcedf027ffc5c19cc17d5faeba6eb545b6
2015-03-26 13:03:29 -07:00
Tom Schuster
ac250f9d73
Bug 1147005 - Change JSAddPropertyOp signature. r=jorendorff,peterv
2015-03-28 14:47:02 +01:00
Andrea Marchesini
621d7068b8
Bug 1148032 - BroadcastChannel API should not bypass private browsing mode, r=ehsan
2015-03-31 22:11:47 +01:00
Wes Kocher
1a65d1c1e9
Backed out changeset 976f64497fbc (bug 1148032) for static analysis bustage
2015-03-31 14:07:07 -07:00
Sean Stangl
eba440e824
Bug 1148375 - Ignore unhandled Elements. r=jandem
2015-03-30 13:34:19 -07:00
Andrea Marchesini
5a32df3d98
Bug 1148032 - BroadcastChannel API should not bypass private browsing mode, r=ehsan
2015-03-31 21:36:36 +01:00
Andrew Halberstadt
f34971f18f
Bug 862730 - Fix kill and get stack regression with b2g devices/emulators, r=davehunt
...
--HG--
extra : rebase_source : a9624d6751d73b7aaaf585ecf603bd6f195b4ebb
2015-03-26 09:33:24 -04:00
Ehsan Akhgari
9968489cfa
Bug 1149174
- Add a test to ensure that XPCOM nsTArray range iterators are stable; r=froydnj
2015-03-31 16:29:58 -04:00
Monica Chew
a326516c92
Bug 1108017: Loosen third-party restrictions for tracking protection checks (r=sworkman)
2015-03-31 13:18:38 -07:00
Sean Stangl
a0f2b74c75
Bug 1146619 - Rename "Prolog" to "Prologue" everywhere. r=efaust
2015-03-23 14:13:26 -07:00
Tom Tromey
62331928fc
Bug 1149194 - Don't use uninitialized value in ComputedTimingFunction::operator==. r=bbirtles
2015-03-30 09:44:00 -04:00
Boris Kudryavtsev
4e5ebec357
Bug 1139158 - Actions made availabe via marionette_driver object. r=jgriffin
2015-03-30 16:57:00 -04:00
Ryan VanderMeulen
ab26b260cd
Merge m-c to inbound. a=merge
...
CLOSED TREE
2015-03-31 15:01:26 -04:00
Ryan VanderMeulen
3e6e4cfe95
Merge fx-team to m-c. a=merge
...
CLOSED TREE
2015-03-31 14:41:03 -04:00
Ryan VanderMeulen
bf52a3a76f
Merge inbound to m-c. a=merge
2015-03-31 14:08:52 -04:00