Commit Graph

236026 Commits

Author SHA1 Message Date
Brian Birtles
030dcb3a08 Bug 1109390 part 6 - Generalize PendingPlayerTracker to support pausing as well; r=jwatt
This patch extends the PendingPlayerTracker which is currently used to record
which animations are waiting to play, such that it can also handle animations
which are waiting to complete a pause operation.

It doesn't yet do anything with the pause-pending animations, that will come
in another patch.
2015-03-27 15:56:45 +09:00
Brian Birtles
c9c21cdcde Bug 1109390 part 5 - Adjust tests to better handle asynchronous pausing; r=jwatt
A number of animation tests assume that pausing happens instantaneously. This
patch adjust many of those tests so that they will continue to work when
pausing happens asynchronously. In many cases this is possible because we
know the ready promise on AnimationPlayer (soon to be Animation) objects will
be resolved so we can wait on it and it will resolve immediately now, but when
asynchronous pausing is introduced the test the promise won't resolve until
after the pause operation is complete.

There are some tests that can't be so easily adjusted and we will have to fix
these at the same time as we turn on async pausing. However, taking care of
this set of tests now should reduce the size of subsequent patches in this
series.
2015-03-27 15:56:44 +09:00
Timothy Nikkel
9675ec7b95 Bug 1130400. Add test. 2015-03-27 01:52:39 -05:00
Eddy Bruël
27ad456fde Bug 1092102 - Implement WorkerDebuggerGlobalScope.enterEventLoop;r=khuey 2015-03-27 07:17:16 +01:00
Sotaro Ikeda
9a69346dff Bug 1147435 - Fix SetDormant() handling in MediaOmxCommonDecoder r=cpearce 2015-03-26 20:57:42 -07:00
Bas Schouten
fe0d1cea3a Bug 1147728: When using WARP, don't try to create a synchronization texture. This will fail on Windows 7. r=jrmuizel 2015-03-27 04:45:54 +01:00
Boris Zbarsky
1348cf51b0 Bug 1147193. Go back to having our accessors on JSStackFrame infallible. r=bholley 2015-03-26 23:05:16 -04:00
Boris Zbarsky
db964dff03 Bug 1147907. Relax our realParent asserts in CloneFunction a bit, pending a proper fix for bug 1143794. r=luke 2015-03-26 23:03:20 -04:00
Boris Zbarsky
0a186b970b Bug 1142844. When xdr-decoding a non-lazy but relazifiable function, don't forget to set up the source object on the LazyScript we create for it. r=luke 2015-03-26 23:02:55 -04:00
Geoff Brown
c7b982abe7 Bug 1146574 - Update Android 4.3 configs for cppunit; r=dminor 2015-03-26 20:35:36 -06:00
Geoff Brown
cf739e07e8 Bug 1140148 - Update mochitest manifests for Android 4.3 emulator; r=dminor 2015-03-26 20:35:35 -06:00
Ehsan Akhgari
47b0c2a9f6 Bug 1148230 - Eliminate the duplicate subexpression
This is leftover from bug 815643.  In that bug,
|destinationChannelL->length()| and |destinationChannelR->length()| both
end up being |destinationBus->mDuration| and I forgot to eliminate the
common subexpression.
2015-03-26 20:58:23 -04:00
Ehsan Akhgari
8178d2066f Bug 1148228 - Stop checking ul twice 2015-03-26 20:58:22 -04:00
Wes Kocher
dd8a8fcae7 Merge m-c to inbound a=merge CLOSED TREE 2015-03-26 17:46:35 -07:00
Mike Hommey
e7949e50fd Bug 1138824 - Don't install import libraries in $(DIST)/lib. r=gps
However, still keep copying nss there, because its build system needs it to link
programs such as certutil.
2015-03-27 09:42:11 +09:00
Mike Hommey
1eee44a9d1 Bug 1138824 - Simplify installation of import libraries to $(DIST)/lib. r=gps
The recursivemake backend sets IMPORT_LIBRARY to the same value as
SHARED_LIBRARY on non-Windows platforms, so we can simply use
IMPORT_LIBRARY everywhere.
2015-03-27 09:42:07 +09:00
Mike Hommey
47007104f5 Bug 1138824 - Remove NO_INSTALL_IMPORT_LIBRARY. r=gps
NO_INSTALL_IMPORT_LIBRARY is only used in one place, and since we don't even
use $(DIST)/lib for gecko, it actually doesn't make a difference presently.
2015-03-27 09:42:00 +09:00
Steven Michaud
4723eb4461 Bug 1147521 - Cannot type into comment area of plugin crash UI. r=smaug 2015-03-26 19:38:13 -05:00
Wes Kocher
a9fc9c0e52 Backed out changeset 2c368e6b267e (bug 1139554) for mochitest-2 failures 2015-03-26 17:34:37 -07:00
Wes Kocher
5fda97fd8d Merge fx-team to m-c a=merge CLOSED TREE 2015-03-26 17:22:05 -07:00
Wes Kocher
28fd43f9a0 Merge b2g-inbound to m-c a=merge CLOSED TREE 2015-03-26 16:44:47 -07:00
Mike Shal
4b6143078e No bug - Bump mozharness.json to revision 9c18f2f9e0c0; r=jlund a=testing 2015-03-26 18:41:13 -04:00
Olli Pettay
dd7449a248 Bug 1148025 - IPC Proxy for 'Component', r=tbsaunde 2015-03-27 00:06:45 +02:00
Olli Pettay
96c1ef9218 Bug 1147551 - IPC Proxy for min/cur/max values, r=davidb 2015-03-27 00:06:38 +02:00
Olli Pettay
dc80dd8ff3 Bug 1147518 - IPC Proxy for Action, r=davidb 2015-03-27 00:06:21 +02:00
Mike Hommey
6ee628d425 Bug 1147283 - Replace mozpack.path with mozpath. r=mshal
Back when mozpack.path was added, it was used as:

  import mozpack.path
  mozpack.path.func()

Nowadays, the common idiom is:

  import mozpack.path as mozpath
  mozpath.func()

because it's shorter.

$ git grep mozpath\\. | wc -l
423
$ git grep mozpack.path\\. | wc -l
123

This change was done with:
$ git grep -l mozpack.path\\. | xargs sed -i 's/mozpack\.path\./mozpath./g'
$ git grep -l 'import mozpack.path$' | xargs sed -i 's/import mozpack.path$/\0 as mozpath/'
$ (pat='import mozpack.path as mozpath'; git grep -l "$pat" | xargs sed -i "1,/$pat/b;/$pat/d")
2015-03-27 08:13:16 +09:00
Mike Hommey
fb66d5439b Bug 1147217 - Improve l10n repack error message when locale doesn't contain necessary files. r=mshal 2015-03-27 08:13:04 +09:00
Mike Hommey
f0e35f76e4 Bug 1147183 - Avoid test_generate_browsersearch.py printing out unicode. r=mshal 2015-03-27 08:12:15 +09:00
Xidorn Quan
c5d84bb571 Bug 1144607 part 3 - Reftests for string value on list-style-type. r=dbaron 2015-03-27 09:48:10 +11:00
Xidorn Quan
e1ea8c6288 Bug 1144607 part 2 - Support string value for list-style-tyle. r=dbaron 2015-03-27 09:48:10 +11:00
Xidorn Quan
5ff9ef3b1e Bug 1144607 part 1 - Remove CounterStyleManager::BuildCounterStyle for anonymous counter styles. r=dbaron 2015-03-27 09:48:10 +11:00
Wes Kocher
3c4a21dc70 Backed out changeset 6306a0c0be65 (bug 1100294) for bc1 orange CLOSED TREE 2015-03-26 14:30:21 -07:00
Wes Kocher
0667f1171e Backed out changeset a4cc519364b5 (bug 1100294) 2015-03-26 14:30:20 -07:00
Wes Kocher
84993db5da Backed out changeset 54f37e45c70b (bug 1125117) for bc1 orange CLOSED TREE 2015-03-26 14:23:55 -07:00
Marina Samuel
6aed9d7e13 Bug 1143745 - Update the way Firefox reads directoryLinks.json sent from the server for the tiles v3 endpoint. r=adw 2015-03-26 17:17:59 -04:00
Marina Samuel
a0dbd1b38b Bug 1143797 - Allow clicking on suggested explanation text to see overlay explaining the suggested tile. r=adw 2015-03-26 17:05:44 -04:00
Mason Chang
13d85b90f5 Bug 1147753. Disable vsync refresh driver on L devices. r=kats 2015-03-26 13:48:47 -07:00
B2G Bumper Bot
af6d8b7ebf Bumping manifests a=b2g-bump 2015-03-26 13:37:57 -07:00
B2G Bumper Bot
74abd4afdc Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/87ffbce1342f
Author: autolander <bug.autolander@gmail.com>
Desc: Bug 1147324 - merge pull request #29176 from albertopq:1147324-stk-fullscreen to mozilla-b2g:master

========

https://hg.mozilla.org/integration/gaia-central/rev/de30b2fc1416
Author: albertopq <apastor@mozilla.com>
Desc: Bug 1147324 - Showing STK fullscreen when no statusbar

========

https://hg.mozilla.org/integration/gaia-central/rev/55c617ebdbed
Author: autolander <bug.autolander@gmail.com>
Desc: Bug 1117014 - merge pull request #29182 from KevinGrandon:bug_1117014_search_marketplace_response_test to mozilla-b2g:master

========

https://hg.mozilla.org/integration/gaia-central/rev/aaad660116c2
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 1117014 - [Search] Add a setTimeout to wait for promise
2015-03-26 13:35:25 -07:00
B2G Bumper Bot
ef0fb06831 Bumping manifests a=b2g-bump 2015-03-26 13:08:04 -07:00
B2G Bumper Bot
ce4b5ffc15 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/933849848de8
Author: Ryan VanderMeulen <ryanvm@gmail.com>
Desc: Merge pull request #29116 from tedders1/bug-1136859-trailing-slash-2

Bug 1136859 - Remove trailing slashes from URLs. r=sfoster

========

https://hg.mozilla.org/integration/gaia-central/rev/8b203f86598c
Author: Ted Clancy <tclancy@mozilla.com>
Desc: Bug 1136859 - Remove trailing slashes from URLs. r=sfoster
2015-03-26 13:05:29 -07:00
Ryan VanderMeulen
65b8c960ef Merge mozilla-inbound to m-c. a=merge
CLOSED TREE
2015-03-26 14:43:39 -04:00
Ryan VanderMeulen
c322e3112b Merge fx-team to m-c. a=merge 2015-03-26 14:22:40 -04:00
B2G Bumper Bot
7c3e848b26 Bumping manifests a=b2g-bump 2015-03-26 10:13:36 -07:00
B2G Bumper Bot
95a8f6e730 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/77327d3916e7
Author: autolander <bug.autolander@gmail.com>
Desc: Bug 1127529 - merge pull request #28984 from punamdahiya:Bug1127529 to mozilla-b2g:master

========

https://hg.mozilla.org/integration/gaia-central/rev/80ac3d646d97
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug 1127529 - [Settings] [Sound] Tone menus (Ringtones, Alerts, Manages Tones) text should not be selectable
2015-03-26 10:10:41 -07:00
Michael Comella
306a540793 Bug 1147661 - Use new device icons in share overlay. r=liuche 2015-03-26 10:06:51 -07:00
Michael Comella
74c00f6576 Bug 1147661 - Add new device assets. r=liuche 2015-03-26 10:06:05 -07:00
B2G Bumper Bot
b347b91827 Bumping manifests a=b2g-bump 2015-03-26 09:38:09 -07:00
B2G Bumper Bot
59afa27572 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/ea6d0a0b7a97
Author: Martijn <martijn.martijn@gmail.com>
Desc: Merge pull request #29104 from mwargers/ftu_skip_fix

Bug 1146877 - Intermittent test_ftu_skip_tour_desktopb2g.py

========

https://hg.mozilla.org/integration/gaia-central/rev/925ce134a986
Author: Martijn Wargers <mwargers@mozilla.com>
Desc: Bug 1146877 - Intermittent test_ftu_skip_tour_desktopb2g.py
2015-03-26 09:35:26 -07:00
B2G Bumper Bot
f7f1f7a954 Bumping manifests a=b2g-bump 2015-03-26 09:18:08 -07:00