Commit Graph

172330 Commits

Author SHA1 Message Date
B2G Bumper Bot
765fd3eaf6 Bumping manifests a=b2g-bump 2014-03-07 00:46:11 -08:00
B2G Bumper Bot
28e43c1c6a Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/1ad040b490a7
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #16672 from ferjm/bug955945.coppa

Bug 955945 - Implement age verification screens for FxA Signup. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/6c4a067d7285
Author: Fernando Jiménez <ferjmoreno@gmail.com>
Desc: Bug 955945 - Implement age verification screens for FxA Signup. r=alive
2014-03-07 00:40:23 -08:00
B2G Bumper Bot
b9b282da5f Bumping manifests a=b2g-bump 2014-03-07 00:23:12 -08:00
B2G Bumper Bot
36a7397cd7 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/dbcdbc8d9466
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #16970 from 6a68/bug-980608-fxa-test-client-autocorrect

Bug 980608 - Disable autocorrect in fxa-test-client r=ferjm

========

https://hg.mozilla.org/integration/gaia-central/rev/98ee1f81378b
Author: Jared Hirsch <ohai@6a68.net>
Desc: Bug 980608 - Disable autocorrect in fxa-test-client r=ferjm
2014-03-07 00:15:30 -08:00
B2G Bumper Bot
723fe46ef5 Bumping manifests a=b2g-bump 2014-03-06 23:51:42 -08:00
B2G Bumper Bot
95265c6413 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/b65a276cf3f2
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #16906 from crdlc/bug-970818

Bug 970818 - [Downloads Manager] Any message appears when the SD card is...

========

https://hg.mozilla.org/integration/gaia-central/rev/e502b8a717e1
Author: crdlc <crdlc@tid.es>
Desc: Bug 970818 - [Downloads Manager] Any message appears when the SD card is full
2014-03-06 23:50:23 -08:00
Andy Wingo
62afccec79 Bug 980263 - Part 2: Avoid phi creation for values on stack at loops r=jandem 2014-03-07 08:44:41 +01:00
Andy Wingo
5024e7e61c Bug 980263 - Part 1: Disable Ion OSR for loops nested in expressions r=jandem 2014-03-07 08:44:38 +01:00
Marco Bonardo
8933900a95 Bug 967192 - Bookmarks restore and import should use OS.File - tests changes. r=mano 2014-03-07 08:41:50 +01:00
Marco Bonardo
f6b8f2d06e Bug 967192 - Bookmarks restore and import should use OS.File. r=mano 2014-03-07 08:41:47 +01:00
B2G Bumper Bot
1c254906bc Bumping manifests a=b2g-bump 2014-03-06 22:26:19 -08:00
B2G Bumper Bot
c4b28525c2 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/09b82983a3cb
Author: EragonJ <eragonj@eragonj.me>
Desc: Merge pull request #16785 from EragonJ/bug-975760

Bug 975760 - [DSDS] the default SIM for Data is not remembered between r...

========

https://hg.mozilla.org/integration/gaia-central/rev/530515efae02
Author: EragonJ <eragonj@eragonj.me>
Desc: Bug 975760 - [DSDS] the default SIM for Data is not remembered between reboots
2014-03-06 22:20:22 -08:00
L. David Baron
a2f97c232b Bug 978712 - Prevent non-running transitions and animations (animations or transitions during their delay period, and animations after they finish) from repeatedly poking layer activity because we think we can run them on the compositor. r=heycam
This changes the behavior of the CanPerformOnCompositorThread methods of
both ElementAnimations and ElementTransitions to check that the
respective animations or transitions are actually running.  This is ok
because:
 - The main caller is nsLayoutUtils::HasAnimationsForCompositor, and all
   of its callers pretty clearly want the more restricted behavior (they're
   concerned with layer activity)
 - The only other callers of these functions are
   nsAnimationManager::FlushAnimations and
   nsTransitionManager::FlushTransitions (determining when to do
   throttling), nsAnimationManager::GetAnimationsForCompositor (whose
   only caller,
   nsDisplayListBuilder::AddAnimationsAndTransitionsToLayer, also checks
   IsRunningAt).  I think these also all want or are fine with having
   the IsRunningAt check.

As to the actual changes:
 - In the animation manager, I think it's a mistake that
   ElementAnimation::IsRunningAt didn't already check
   mIterationDuration, since we throw out animations with a bad
   iteration-duration in ElementAnimations::EnsureStyleRuleFor.  So this
   makes that change as well.
 - In the transition manager, IsRunningAt already checks
   !IsRemovedSentinel().

I've confirmed in gdb on a device that this fixes the repeated
nsIFrame::SchedulePaint calls that were the symptom of this bug.

I believe this patch also makes it so that a short animation of a
property that can't be animated on the compositor doesn't prevent the
entire duration of the animation of a property that can from being
throttled (having the main thread style updates suppressed).
2014-03-06 22:08:57 -08:00
L. David Baron
f59fdc97c7 Bug 979748 - Simplify code based on already having checked the NS_FRAME_OUT_OF_FLOW bit. r=heycam
Since we've already returned if the NS_FRAME_OUT_OF_FLOW bit is not set,
and since FirstInFlow() is the same as this when GetPrevInFlow() is
null, this is a straightforward simplification of the code and should
not change behavior.
2014-03-06 22:08:57 -08:00
L. David Baron
78f8a5efe0 Bug 979760 - Pull out a BeginTransaction call common to the start of all three branches of if/else logic. r=mattwoodrow
I don't see any particular reason for them to logically be in each
branch, and it seems the code was originally written with the
BeginTransaction in one place, but later had to be refactored into its
current form.

Note that this separates the comment from one of the EndEmptyTransaction
calls below it, but the comment was actually associated primarily with
the further EndEmptyTransaction call, and with the if above it, based on
the history pointing to
https://hg.mozilla.org/mozilla-central/rev/b4e9a17e7fe2
2014-03-06 22:08:57 -08:00
Mike Habicher
9d73e74bd6 Bug 980484 - make the zoom setting more robust, r=dhylands 2014-03-07 01:07:27 -05:00
Mike Habicher
6411be5b8b Bug 965425 - expose ISO setting, r=dhylands,jst 2014-03-07 01:00:43 -05:00
B2G Bumper Bot
394985849b Bumping manifests a=b2g-bump 2014-03-06 21:56:38 -08:00
B2G Bumper Bot
44b7ed880a Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/09e4745e3b60
Author: Askeing Yen (fyen) <askeing@gmail.com>
Desc: Merge pull request #16162 from echangmoz/master

DS support in Settings -> data & cell; Settings -> SIM manager

========

https://hg.mozilla.org/integration/gaia-central/rev/2255ec675cb1
Author: Eric Chang <echang@mozilla.com>
Desc: Bug 972695 - [dsds] support Sim Manager in Settings on dsds phones

========

https://hg.mozilla.org/integration/gaia-central/rev/de10423400e1
Author: Eric Chang <echang@mozilla.com>
Desc: Bug 972695 - [dsds] support Sim Manager in Settings on dsds phone
2014-03-06 21:55:22 -08:00
Phil Ringnalda
b932e52022 Back out 965fe5b195ab (bug 962670) for leaking 2014-03-06 20:36:28 -08:00
Andrew McCreight
3ceac964bd Bug 979993 - Free the old input data in SetValueInternal. r=bz 2014-03-06 20:27:52 -08:00
B2G Bumper Bot
32b0dc613c Bumping manifests a=b2g-bump 2014-03-06 19:31:25 -08:00
B2G Bumper Bot
0411a46e80 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/002f334d7698
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #16973 from KevinGrandon/bug_980653_email_dialog_header_line_height

Bug 980653 - Layout issues in email recipient action menu

========

https://hg.mozilla.org/integration/gaia-central/rev/dd29af39d721
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 980653 - Layout issues in email recipient action menu r=asuth
2014-03-06 19:25:26 -08:00
Matt Woodrow
887c38c308 Bug 974197 - Fire MozAfterPaint after the compositor has composited the frame. r=roc 2014-03-07 16:24:32 +13:00
Mark Capella
3e6752cc9e Bug 978731 - Cursor position jumps around, dragging handles moves text, r=wesj 2014-03-06 22:14:22 -05:00
Bill McCloskey
0ba2b34d57 Bug 980558 - Enable extraWarnings on safe JS context (r=bholley) 2014-03-06 18:48:16 -08:00
Wes Kocher
64db4271e0 Backed out changeset 263b6c86c1be (bug 980558) for build bustage on a CLOSED TREE 2014-03-06 18:43:26 -08:00
Wes Kocher
c0d3f099a6 Merge m-c to fx-team 2014-03-06 18:30:19 -08:00
Wes Kocher
00c3610973 Merge changes 2014-03-06 18:28:21 -08:00
Masayuki Nakano
ab1c931a24 Bug 962140 Collect more details of the queue status when we removed unexpected char message from the queue r=jimm 2014-03-07 11:27:49 +09:00
Wes Kocher
1a5d40416f Merge m-c to inbound 2014-03-06 18:27:43 -08:00
Bill McCloskey
1c7cbfe589 Bug 980558 - Enable extraWarnings on safe JS context (r=bholley) 2014-03-06 18:26:33 -08:00
Bill McCloskey
7713de8760 Bug 972728 - Invalidate more often in basic compositor (r=mattwoodrow) 2014-03-06 18:25:09 -08:00
Wes Kocher
5f4beb99a4 Merge fx-team to m-c 2014-03-06 17:49:01 -08:00
Wes Kocher
7f6870f741 Merge b2g-inbound to m-c 2014-03-06 17:37:39 -08:00
Ryan VanderMeulen
48db9fe113 Backed out changesets a7ea2d51414d and 901717199390 (bug 957917) for causing bug 980375. 2014-03-06 16:30:35 -05:00
B2G Bumper Bot
16b2a21671 Bumping manifests a=b2g-bump 2014-03-06 12:26:42 -08:00
B2G Bumper Bot
c952b76fe1 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/44e3bac38280
Author: Julien Wajsberg <felash@gmail.com>
Desc: Merge pull request #16945 from julienw/980251-script-to-run-unit-tests-in-b2g

Bug 980251 - Provide a simple way to run the test runner in B2G Desktop ...

========

https://hg.mozilla.org/integration/gaia-central/rev/1e4a5e68e301
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 980251 - Provide a simple way to run the test runner in B2G Desktop r=bkelly

Make bin/gaia-test takes an option to run in B2G Desktop instead of Firefox
2014-03-06 12:25:24 -08:00
B2G Bumper Bot
b0a1872919 Bumping manifests a=b2g-bump 2014-03-06 12:17:43 -08:00
B2G Bumper Bot
13ef6d97e0 Bumping manifests a=b2g-bump 2014-03-06 12:06:10 -08:00
B2G Bumper Bot
3304bea86d Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/c2010f29a3d4
Author: Ryan VanderMeulen <rvandermeulen@mozilla.com>
Desc: Merge pull request #16934 from 6a68/bug-977776-prefill-reset-password

Bug 977776: Pass email to firefox accounts server when resetting password

========

https://hg.mozilla.org/integration/gaia-central/rev/fb0ca0f438b1
Author: Jared Hirsch <ohai@6a68.net>
Desc: Bug 977776: Pass email to firefox accounts server when resetting password.
2014-03-06 12:00:21 -08:00
B2G Bumper Bot
1533651db4 Bumping manifests a=b2g-bump 2014-03-06 11:26:18 -08:00
B2G Bumper Bot
51987b9ccb Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/1bf6d2a2040c
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Merge pull request #16867 from mcav/fix-ring-inactive

Bug 979102 - [B2G][Clock] If a user lets an alarm go off for 10 minutes... r=millermedeiros

========

https://hg.mozilla.org/integration/gaia-central/rev/f125bf546d5b
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Bug 979102 - [B2G][Clock] If a user lets an alarm go off for 10 minutes without stopping it, the stop and snooze buttons will stop functioning
2014-03-06 11:20:21 -08:00
B2G Bumper Bot
112ee196df Bumping manifests a=b2g-bump 2014-03-06 10:56:28 -08:00
B2G Bumper Bot
b00a76971e Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/1a3a86dc975d
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Merge pull request #16864 from mcav/edit-alarm-text

Bug 978930 - [B2G][Clock] Edit Alarm will be seen instead of New Alarm. r=millermedeiros

========

https://hg.mozilla.org/integration/gaia-central/rev/020c659d30cc
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Bug 978930 - [B2G][Clock] Edit Alarm will be seen instead of New Alarm after deleting an alarm. r=millermedeiros
2014-03-06 10:55:22 -08:00
B2G Bumper Bot
71958ef36e Bumping manifests a=b2g-bump 2014-03-06 10:51:14 -08:00
B2G Bumper Bot
f54ba3cc39 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/53e60d8cbcc1
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Merge pull request #16851 from mcav/fix-alarmicon

Bug 978683 - [Clock] Alarm icon not showing in the status bar. r=millermedeiros

========

https://hg.mozilla.org/integration/gaia-central/rev/aa6dd65ea9a7
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Bug 978683 - [Clock] Alarm icon not showing in the status bar after setting an alarm
2014-03-06 10:45:25 -08:00
B2G Bumper Bot
4e398e158f Bumping manifests a=b2g-bump 2014-03-06 10:20:50 -08:00
B2G Bumper Bot
abdd0dc65e Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/5db565643a26
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Merge pull request #16467 from mcav/lap1000

Bug 949867 - [clock] lap100 won't be able to stopped. r=millermedeiros

========

https://hg.mozilla.org/integration/gaia-central/rev/9fa24ca12fad
Author: Marcus Cavanaugh <m@mcav.com>
Desc: Bug 949867 - [clock] lap100 won't be able to stopped. r=millermedeiros

========

https://hg.mozilla.org/integration/gaia-central/rev/569a8ad21c2d
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Merge pull request #16932 from mikehenrty/bug-965774-retrytests

Bug 965774 - [DSDS][FTE] Not exist 3 retries for each sim, r=francisco

========

https://hg.mozilla.org/integration/gaia-central/rev/c991471a71c1
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Bug 965774 - [DSDS][FTE] Not exist 3 retries for each sim
2014-03-06 10:15:25 -08:00
B2G Bumper Bot
97e80764fd Bumping manifests a=b2g-bump 2014-03-06 10:01:31 -08:00