Граф коммитов

435695 Коммитов

Автор SHA1 Сообщение Дата
Ryan VanderMeulen 93215ef261 Merge inbound to m-c. a=merge 2015-08-18 10:33:13 -04:00
Jan de Mooij 4b7506a72d Bug 1187021 - Force arguments object allocation on dynamic name accesses. r=shu 2015-08-18 13:07:44 +02:00
Sebastian Hengst 7d2dad58e7 Backed out changesets d0eee19c83cd, 0c54ee53678f, 5b202008a431, 81291b4e6dc3, acbc0d7e21cd, a7ceb6162a63 (bug 1194112) for Linux x64 Hazard failure. r=backout
Backed out changeset d0eee19c83cd (bug 1194112)
Backed out changeset 0c54ee53678f (bug 1194112)
Backed out changeset 5b202008a431 (bug 1194112)
Backed out changeset 81291b4e6dc3 (bug 1194112)
Backed out changeset acbc0d7e21cd (bug 1194112)
Backed out changeset a7ceb6162a63 (bug 1194112)
2015-08-18 11:11:38 +02:00
Jon Coppeard f6ded5c145 Bug 1195297 - Fix OOM handling in ExecutableAllocator r=terrence 2015-08-18 10:03:49 +01:00
Sebastian Hengst a133c6114b Backed out changesets 7610baf4a3ae, 6226b99f19bd, 157e41e32906, 60a3b1862f71 (bug 1195158). r=backout
Backed out changeset 7610baf4a3ae (bug 1195158)
Backed out changeset 6226b99f19bd (bug 1195158)
Backed out changeset 157e41e32906 (bug 1195158)
Backed out changeset 60a3b1862f71 (bug 1195158)
2015-08-18 10:52:09 +02:00
JW Wang b47fc2fd4d Bug 1195158. Part 4 - remove unused code. r=cpearce. 2015-08-18 11:12:39 +08:00
JW Wang c024260362 Bug 1195158. Part 3 - connect listeners. r=cpearce.
a. MediaMetadataManager is connected to MediaDecoderReader::mTimedMetadataEvent to receive TimedMetadata events.
b. OggReader publish TimedMetadata events through MediaDecoderReader::mTimedMetadataEvent.
c. MDSM calls MediaMetadataManager::DispatchMetadataIfNeeded to publish metadata if playback positoin reaches the publish time.
d. MediaDecoder is connected to MediaMetadataManager::mTimedMetadataEvent to receive TimedMetadata events.
e. MediaDecoder updates its metadata when TimedMetadata events are received.
2015-08-18 11:12:39 +08:00
JW Wang 2b46e9e678 Bug 1195158. Part 2 - Have OggReader send TimedMetadata events through a event source instead of direct calls to AbstractMediaDecoder::QueueMetadata. r=cpearce. 2015-08-18 11:12:39 +08:00
JW Wang e82e865c9a Bug 1195158. Part 1 - Have MediaMetadataManager listen to an event source to receive TimedMetadata events. OggReader will send TimedMetadata events through an event source. This will break OggReader's dependency on AbstractMediaDecoder::QueueMetadata which then can be removed for it is against our goal to run all MediaDecoder's methods on the main thread. r=cpearce. 2015-08-18 11:12:38 +08:00
Brian Birtles 7f6947284e Bug 1188251 part 12 - Use RestyleType::Layer in UpdateCascade; r=dholbert
When updating the cascade results between transitions and animations, if we
detect a change we force an update by taking the following steps:

 a. Updating the animation generation on the restyle manager
 b. Updating the animation generation on the collection
 c. Iterating over all the properties animated by the collection and, for
    each property that we can animate on the compositor, posting a restyle
    event with the appropriate change hint (nsChangeHint_UpdateTransformLayer
    or nsChangeHint_UpdateTransformOpacity)
 d. Marking the collection as needing refreshes
 e. Clearing the style rule refresh time so we generate a new style rule in
    EnsureStyleRuleFor

As it turns out, the newly-added
AnimationCollection::RequestRestyle(RestyleType::Layer) already performs a, b,
d, and e. It also:

* Ensures we are observing the refresh driver if need be (should have no effect
  in this case)
* Clears the last animation style update time on the pres context so that
  subsequent calls to FlushPendingNotifications will update animation style
  (it seems like we probably should have been doing this for changes to cascade
  results anyway)
* Posts a restyle event with restyle hint eRestyle_CSSTransitions or
  eRestyle_CSSAnimations
* Marks the document as needing a style flush (irrelevant since posting
  a restyle event does this anyway)

The only missing piece that would prevent using RequestRestyle in place of this
code when updating cascade results is (c) from the list above. However, (c)
should not be necessary since ElementRestyler::AddLayerChangesForAnimation()
explicitly checks for out-of-date layer animation generation numbers and adds
the appropriate change hints (nsChangeHint_UpdateTransformLayer etc.) to the
change list.
2015-08-18 16:11:55 +09:00
Brian Birtles 3cc3ae622c Bug 1188251 part 11 - Add RestyleType::Layer; r=dholbert
We currently have a series of methods that clobber various bits of animation
state to force animations on layers to be updated. This aligns closely with
the restyle code introduced in this patch series.

By re-using RequestRestyle when updating animations on layers, not only should
we be able to simplify the code somewhat but, in future, we should also be able
to have Animation objects use the same mechanism to update layers during
a regular tick.

For example, currently we have a bug where when an animation starts after
a delay with the same value as the backwards fill then we don't send the
animation to the compositor right away (see
https://dxr.mozilla.org/mozilla-central/rev/d6ea652c579992daa9041cc9718bb7c6abefbc91/layout/style/test/test_animations_omta.html#287).
By adding this Restyle::Layer value we should be able to fix that in future.
2015-08-18 16:11:55 +09:00
Brian Birtles 6e18b672e3 Bug 1188251 part 10 - Remove throttling from EnsureStyleRuleFor; r=dholbert
EnsureStyleRuleFor contains logic for performing throttled updates to the style
rule but it is only used in one case: inside
nsTransitionManager::UpdateCascadeResults to determine what properties are
being animated by CSS animations.

We would like to remove throttling logic from EnsureStyleRuleFor altogether but
if that one case where it is currently used is run on every tick then removing
this logic could effectively mean we end up updating the style rule on every
tick. Fortunately nsTransitionManager::UpdateCascadeResults is only called
in the following cases:

1. From nsTransitionManager::StyleContextChanged (via
   TransitionManager::UpdateCascadeResultsWithTransitions), when we are
   processing style changes for transitions.

2. From AnimationCollection::EnsureStyleRuleFor (via
   nsAnimationManager::MaybeUpdateCascadeResults and
   nsTransitionManager::UpdateCascadeResultsWithAnimations), when we are
   updating the animation style rule from CSS animations.

3. From nsAnimationManager::CheckAnimationRule (via
   TransitionManager::UpdateCascadeResultsWithAnimationsToBeDestroyed), when
   we are processing style changes for CSS animations.

None of these things should be happenning on a regular throttle-able tick so by
removing this logic we shouldn't be causing any additional work.

I have verified, using a test case that combines transitions and animations on
the same property, that we have the same behavior with regard to calling
EnsureStyleRuleFor both before and after this patch (specifically we avoid
calling it altogether while running only the transition but when the animation
starts and clobbers the transition we end up calling EnsureStyleRuleFor once on
each tick).
2015-08-18 16:11:55 +09:00
Brian Birtles 5715bb1092 Bug 1188251 part 9 - Request restyles from Animation::Tick; r=dholbert
In preparation for ultimately being able to run animations without a manager,
this patch moves the request restyle code from FlushAnimations to
Animation::Tick. (Ultimately most of this functionality should move to the
KeyframeEffect but for now Animation is fine.)
2015-08-18 16:11:55 +09:00
JW Wang 043e43feb6 Bug 1194112. Part 6 - add a test case to test the exclusive mode. r=kinetik. 2015-08-18 11:12:18 +08:00
JW Wang efbb80586d Bug 1194112. Part 5 - remove dead code. r=kinetik. 2015-08-18 11:12:06 +08:00
JW Wang 1b22c5e8ce Bug 1194112. Part 4 - reimplement Listener/ListenerImpl to support Move. r=kinetik. 2015-08-18 11:11:53 +08:00
JW Wang 5f598a7653 Bug 1194112. Part 3 - use perfect forwarding in MediaEventProducer::Notify() so MediaEventSource can decide whether to copy or move according to its ListenerMode. r=kinetik. 2015-08-18 11:11:42 +08:00
JW Wang de505bd968 Bug 1194112. Part 2 - small code refactoring to reduce typing. r=kinetik. 2015-08-18 11:11:29 +08:00
JW Wang 45edb0c3a0 Bug 1194112. Part 1 - extract event dispatch code from ListenerImpl to its own class. r=kinetik. 2015-08-18 11:11:16 +08:00
Makoto Kato 45b2236f90 Bug 1191688 - Add -nologo option to rc.exe. r=ted 2015-08-18 15:55:17 +09:00
Martyn Haigh 98569ceeff Bug 1195216 - Last tab is cut off in tab tray in portrait; r=mcomella
--HG--
extra : commitid : I9ZX0ciwMef
extra : rebase_source : 195e773b4b0667bd7cb914cf3fba1803d3c018b9
extra : amend_source : 7817f5a3fc9c566574c39e10443b4841b528022f
2015-08-17 15:16:42 +01:00
Paolo Amadini 359bc05df3 Bug 1189704 - Fix shield icon animation margins and handle the right-to-left direction. r=bgrins
--HG--
extra : commitid : 3lDHJVQeegZ
extra : source : d334d7d67fa0770ce6bbe713b56ab55bd7ef9fdd
2015-08-17 14:05:29 +01:00
Paolo Amadini 770e6aab20 Backed out changeset d334d7d67fa0 (bug 1189704)
--HG--
extra : commitid : 5eCxfwEzHUu
2015-08-18 11:49:56 +01:00
Paolo Amadini 414dbc0f20 Bug 1189704 - Fix shield icon animation margins and handle the right-to-left direction. r=bgrins
--HG--
extra : commitid : Ew4cmAV6D9
extra : rebase_source : d801965d3d1f9a58c66e5d5b7815c5a32d5377ac
2015-08-17 14:05:29 +01:00
Mike de Boer ea55cb9366 No Bug - correct comment to say 'browser', not 'tab'. rs=comment-only. DONTBUILD. 2015-08-18 11:43:22 +02:00
Gijs Kruitbosch c85608db7b Bug 1191973 - abortPrompt when removing it because the user switched tabs, r=dolske
--HG--
extra : commitid : Hy1jL7mt2UI
extra : rebase_source : c79fed303b96d038a2aa2ce0989261b330526983
extra : histedit_source : 572ab7b2b0385865f87b784053c117b0f4c9769e
2015-08-14 14:43:12 +01:00
Mark Hammond 1b70f201de Bug 959844 followup - change 'internet' to 'Internet' in a string. r=me 2015-08-18 16:41:21 +10:00
Allison Naaktgeboren f9028b72d5 Bug 1114821 - Remove nightly-only flag for about logins.r=liuche 2015-08-17 23:22:24 -07:00
Jonathan Almeida [:jonalmeida] 9f0390307a Bug 948591 - Intermittent testClearPrivateData | Exception caught - junit.framework.AssertionFailedError: Text string: '^Settings$' is not found! r=mcomella
--HG--
extra : commitid : B8nQmazs0XG
extra : rebase_source : ef7c4ccc08c9adcd135138090a6c8fa2de43a10c
extra : amend_source : d807c80992cc3d2ba7e9ba135b7e6f3387dcaee1
2015-08-17 00:00:00 -07:00
Patrick Brosset 42e6d83ec7 Bug 1093431 - Intermittent browser_styleinspector_tooltip-closes-on-new-selection.js; r=test-only
Make sure the test removes the toggling on hover of the rule-view tooltip to avoid intermittents
when mouseleave events are somehow simulated in previous tests.
And cleanup the test a little bit so it actually tests something.

--HG--
extra : commitid : D8pgKn4yT2Q
2015-08-17 13:58:56 +02:00
Kate McKinley 76e8ea6fee Bug 1174333 - Telemetry for percentage of password fields on safe/unsafe pages. r=MattN,tanvi p=ally
--HG--
extra : commitid : JznQA6kBkKd
2015-08-17 21:48:34 -07:00
Wes Kocher 8385253e83 Merge m-c to fx-team, a=merge 2015-08-17 17:17:09 -07:00
Wes Kocher fc6203de4a Merge b2ginbound to central, a=merge 2015-08-17 17:05:25 -07:00
Wes Kocher c11420c4df Merge inbound to central, a=merge 2015-08-17 17:00:42 -07:00
Wes Kocher 06e280b35d Merge fx-team to central, a=merge 2015-08-17 16:54:21 -07:00
Tim Nguyen 95170b2aa1 Bug 1166921 - Support storage inspector stores-cleared event. r=mratcliffe 2015-08-17 15:29:58 -07:00
David Burns d0149ca48f Bug 1195440: Disable health reporting when marionette tests are running; r=jgriffin
--HG--
extra : commitid : 6ltTPgnkn0V
extra : rebase_source : 3cf8839225e8b9d64ef866e983fbbe329526bbf4
2015-08-17 21:36:57 +01:00
Josh Matthews d81dcd0407 Bug 1179399 - Add a flag to HttpBaseChannel indicating whether interception is occurring. r=mayhemer
Landed on a CLOSED TREE
2015-08-17 16:42:46 -04:00
Ryan VanderMeulen 47217eaaec Bug 1195474 - Annotate 759249-1.html and 415394-1.xhtml as asserting in e10s mode. a=me
--HG--
extra : amend_source : 6f6f04e2566e9e74bad340ceb9238566e3a55f5e
2015-08-17 15:48:20 -04:00
Ryan VanderMeulen 2b80504f9c Bug 1195472 - Annotate 505912-1.html to expect one assertion in e10s mode. 2015-08-17 15:36:20 -04:00
Andrew Osmond d4cc8622c2 Bug 1187364 - Part 2. Ensure that recording is resumed with a key frame. r=mchiang 2015-08-17 15:20:35 -04:00
Andrew Osmond b100eebfc1 Bug 1187364 - Part 1. Add ability for camera to pause/resume recording. r=dhylands,bz 2015-08-17 15:20:28 -04:00
Nick Alexander e46a0d8dd6 No bug - Bump Google Play versions in Android Gradle versions. r=me
DONTBUILD NPOTB

We're seeing build failures since 6.5.+ doesn't match 6.5.87.  This
shouldn't be fuzzy, and it shouldn't be an ancient version of Google
Play Services either.  (In moz.build local builds , we're using a much
more recent version.  In automation, I'm not certain what we're
using.)

--HG--
extra : commitid : 6EjfXxM9FJy
2015-08-17 11:26:29 -07:00
Shivang Nagaria 359c5be3bf Bug 591753: Category buttons should highlight on hover even when selected. r=dtownsend
--HG--
extra : commitid : KKdcqvrSA39
extra : rebase_source : d79b33aa032abdf804bdf7bc0a21cc720431446c
2015-08-17 10:48:52 -07:00
B2G Bumper Bot 592cae86db Bumping manifests a=b2g-bump 2015-08-17 10:33:39 -07:00
B2G Bumper Bot 8011696dbe Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/a1b18f9a9e86
Author: Justin D'Arcangelo <justindarc@gmail.com>
Desc: Merge pull request #31353 from justindarc/bug1194342

Bug 1194342 - [Music][NGA] Enable ServiceWorkers via build-time flag

========

https://hg.mozilla.org/integration/gaia-central/rev/2774febb236a
Author: Justin D'Arcangelo <justindarc@gmail.com>
Desc: Bug 1194342 - [Music][NGA] Enable ServiceWorkers via build-time flag
2015-08-17 10:32:01 -07:00
B2G Bumper Bot a83ca180fe Bumping manifests a=b2g-bump 2015-08-17 08:57:05 -07:00
B2G Bumper Bot 09d6f7e95e Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/9aaa21532b2f
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #31340 from arcturus/bug-1183058

Bug 1183058 - [Contacts]Enable "Order by last name", and then kill th…

========

https://hg.mozilla.org/integration/gaia-central/rev/b7ff8a7de4a9
Author: Francisco Jordano <fjordano@mozilla.com>
Desc: Bug 1183058 - [Contacts]Enable "Order by last name", and then kill the contact app or reboot device without tapping "Done", and "Order by last name" will not work when it is enable unless you kill contact and relaunch again. r=borjasalguero

========

https://hg.mozilla.org/integration/gaia-central/rev/95b70d55c028
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #31355 from mwargers/1191471

Bug 1191471 - Fix failure in test_keyboard.py

========

https://hg.mozilla.org/integration/gaia-central/rev/4b6e42473d80
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1191471 - Fix failure in test_keyboard.py
2015-08-17 08:55:28 -07:00
B2G Bumper Bot 37c6ef18f2 Bumping manifests a=b2g-bump 2015-08-17 08:32:04 -07:00
B2G Bumper Bot 015133d731 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/737de71fea13
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #31373 from arcturus/bug-1152986

Bug 1152986 - Contact Last Name is repeated in Name field when viewin…

========

https://hg.mozilla.org/integration/gaia-central/rev/ce0ede99d039
Author: Francisco Jordano <fjordano@mozilla.com>
Desc: Bug 1152986 - Contact Last Name is repeated in Name field when viewing an attached vcard with Last Name and without Name fields r=francisco
2015-08-17 08:30:27 -07:00