Commit Graph

172548 Commits

Author SHA1 Message Date
Blake Kaplan
bd61b1f7a3 Bug 980586 - Remove old e10s prompt code. r=smaug 2014-03-10 08:57:07 -04:00
Richard Barnes
9c0c4d10cd Bug 978435 - Add ArgumentToJSVal overload for typed arrays. r=bz 2014-03-10 08:55:46 -04:00
Max Vujovic
38ada69883 Bug 948265 - Remove deprecated filterRes attribute from SVG filters. r=roc, r=hsivonen 2014-03-10 08:55:25 -04:00
Carsten "Tomcat" Book
5c9d79e018 Merge mozilla-central to mozilla-inbound 2014-03-10 12:34:00 +01:00
Carsten "Tomcat" Book
dc70fa97b3 Backed out changeset 557c7be2fdb6 (bug 979481) for causing regression Bug 981202 2014-03-10 12:32:05 +01:00
Carsten "Tomcat" Book
9492378211 Backed out changeset 5d9fb147f723 (bug 979481) 2014-03-10 12:31:35 +01:00
Carsten "Tomcat" Book
749fca5b88 Backed out changeset 5423f1b0599e (bug 979481) 2014-03-10 12:31:34 +01:00
Carsten "Tomcat" Book
2c9ecd6ee4 Backed out changeset 670fb9adcd29 (bug 979481) 2014-03-10 12:31:32 +01:00
Carsten "Tomcat" Book
65483bfd22 Backed out changeset 77f4622e2000 (bug 979481) 2014-03-10 12:31:31 +01:00
Carsten "Tomcat" Book
85ea871495 merge b2g-inbound to mozilla-central 2014-03-10 12:29:49 +01:00
Carsten "Tomcat" Book
bf71db458f merge fx-team to mozilla-central 2014-03-10 12:28:34 +01:00
Tom Schuster
19962e2281 Bug 977963 - Disable x11 texture_from_pixmap until the black layer problem is fixed. r=mattwoodrow 2014-03-10 12:13:54 +01:00
Hannes Verschore
6b0c41f7c0 Bug 977577 - IonMonkey: Improve MRecompilecheck by checking if already recompiling, before doing vmcall, r=jandem 2014-03-10 12:07:35 +01:00
Carsten "Tomcat" Book
80de55b990 Backed out changeset 7de39a071ca6 (bug 981167) for Test Bustage on a CLOSED TREE 2014-03-10 10:41:31 +01:00
Chris Peterson
398b183494 Bug 980211 - Backout part of cset f81c8b82ac70 for bad merge of libspeex moz.build. 2014-03-09 23:35:44 -07:00
Brian Birtles
11b3c9a78c Bug 980207 - When the refresh driver is under test control, make compositor thread only update when a composite is scheduled; r=dzbarsky
In order to make test behavior better match real-world sampling behavior, this
patch updates the test code in CompositorParent so that it only updates the
layer when a composite is scheduled. This enables creating mochitests that
reproduce bugs observed in regular usage.
2014-03-10 13:47:12 +09:00
Brian Birtles
d0c463eeb4 Bug 979161 part 4 - Add a non-flushing version of waitForAllPaints to paint_listener.js; r=mattwoodrow
This patch adds waitForAllPaints which does *not* call getBoundingClientRect
since that can cause a flush. Sometimes this flush is undesirable since it can
mask bugs in the code under test which should be performing this flush itself.
2014-03-10 13:47:12 +09:00
Brian Birtles
41c36539e0 Bug 979161 part 3 - Use SpecialPowers.getDOMWindowUtils in paint_listener.js; r=mattwoodrow
We can't just use SpecialPowers.DOMWindowUtils since otherwise we end up with
a DOMWindowUtils object that is bound to the parent object.
2014-03-10 13:47:12 +09:00
Brian Birtles
9fa0ffae79 Bug 979161 part 2 - Wrap long lines in paint_listener.js; r=mattwoodrow
And also simplify the code somewhat
2014-03-10 13:47:12 +09:00
Brian Birtles
d41886a897 Bug 979161 part 1 - Wrap up paint_listener.js so it doesn't leak globals; r=roc 2014-03-10 13:47:12 +09:00
Brian Birtles
e40ff94f71 Bug 979658 part 4 - Rename PLayerTransaction.GetTransform to GetAnimationTransform; r=dzbarsky
PLayerTransaction.GetTransform doesn't actually return the same kind of value
when the transform on the layer is not set by animation. This is because it uses
information stored with the animation to undo various transforms. We shouldn't
pretend to return something useful/similar when we don't have that information
available.

This patch renames GetTransform to GetAnimationTransform and makes it return
a union that has type void_t if the layer is not transformed by animation.
2014-03-10 13:47:12 +09:00
Brian Birtles
08ad1c9e6f Bug 979658 part 3 - Make LayerTransactionParent::RecvGetTransform convert to CSS pixels; r=dzbarsky
LayerTransactionParent::RecvGetTransform takes care to reverse all the
transformations applied by AsyncCompositionManager::SampleValue to the CSS
values calculated so that it can return CSS values for testing. However, it
fails to revert the conversion from CSS pixels to device pixels applied to the
translation components of the transform by
nsStyleTransformMatrix::ProcessTranslatePart as called by
nsDisplayTransform::GetResultingTransformMatrix.

This patch converts the resulting transform's translation components from device
pixels back to CSS pixels. It also adds documentation for the other operations
in LayerTransactionParent::RecvGetTransform.
2014-03-10 13:47:12 +09:00
Brian Birtles
7499abbd61 Bug 979658 part 2 - Add nsDOMWindowUtils.getOMTAStyle; r=dbaron
nsDOMWindowUtils.getOMTAOrComputedStyle falls back to using getComputedStyle
when an OMTA style is not available. However, in order to be sure we are testing
OMTA, this patch adds getOMTAStyle which returns an empty string if no OMTA
style is available.

This patch also includes some minor stylistic tweaks. The method signature for
getOMTAOrComputedStyle now takes an nsIDOMElement parameter rather than
nsIDOMNode in order to simplify error-checking. (When we support OMTA of
pseudo-elements we will have to adjust the method signature but for now we only
support elements.) Also, some lines have been wrapped, ErrorResult is
declared closer to where it is used, and the return value aResult is only
truncated when returning NS_OK.
2014-03-10 13:47:12 +09:00
Brian Birtles
66100682c8 Bug 979658 part 1 - Add check that caller is chrome to GetOMTAOrComputedStyle; r=dzbarsky
Every other exposed method in nsDOMWindowUtils except getViewPortInfo and
getViewId performs this check. This patch makes getOMTAOrComputedStyle check the
caller is chrome as well.
2014-03-10 13:47:11 +09:00
Phil Ringnalda
6c5251b6a5 Merge m-c to b-i 2014-03-09 20:43:45 -07:00
Phil Ringnalda
c0a58aed3d Merge m-c to f-t 2014-03-09 20:42:27 -07:00
Phil Ringnalda
44030e0f41 Merge b-i to m-c 2014-03-09 20:38:56 -07:00
Shawn Huang
e44679a57d Bug 979160 - Outgoing connection failure shall trigger OnConnect instead of OnDisconnect, r=echou 2014-03-10 10:33:32 +08:00
Sotaro Ikeda
1361c4bdbf Bug 981112 - Destruct MediaDecoderReader first r=padenot 2014-03-09 14:27:15 -07:00
B2G Bumper Bot
525a293941 Bumping manifests a=b2g-bump 2014-03-09 13:26:40 -07:00
B2G Bumper Bot
6e1aa6e734 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

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

Bug 980164 - [System2] LogoLoader updates r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/30b24b421a0b
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 980164 - [System2] LogoLoader updates r=alive
2014-03-09 13:25:23 -07:00
B2G Bumper Bot
dc361cddf0 Bumping manifests a=b2g-bump 2014-03-09 06:46:47 -07:00
B2G Bumper Bot
400ac9b424 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/fc42c76396b5
Author: Arthur Chen <crh0716@gmail.com>
Desc: Merge pull request #16652 from crh0716/975918

Bug 975918 - Support DSDS for voice mail r=jaoo, etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/fa101d064b12
Author: Arthur Chen <crh0716@gmail.com>
Desc: Bug 975918 - Support DSDS for voice mail
2014-03-09 06:45:26 -07:00
B2G Bumper Bot
ebf39b735b Bumping manifests a=b2g-bump 2014-03-09 04:16:50 -07:00
B2G Bumper Bot
d216b462fd Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/d4f876f6f000
Author: Dale Harvey <dale@arandomurl.com>
Desc: Bug 981341 - Fix type in camera css. r=daleharvey

========

https://hg.mozilla.org/integration/gaia-central/rev/d2662e2bbaba
Author: Rudy Lu <me@rudy.lu>
Desc: Merge pull request #16986 from RudyLu/Bug975486-shorten_serbian_Cyrillic_string

Bug 975486 - [B2G][l12y][Settings]Serbian-Cyrillic: Keyboard title is
r=civas

========

https://hg.mozilla.org/integration/gaia-central/rev/99a5ab50651d
Author: Rudy Lu <me@rudy.lu>
Desc: Bug 975486 - [B2G][l12y][Settings]Serbian-Cyrillic: Keyboard title is
truncated in 'Selected Keyboards' list.
 - Shorten the string of Serbian Cyrillic.
2014-03-09 04:15:27 -07:00
Phil Ringnalda
913b7607a5 Merge m-c to b-i 2014-03-08 17:52:15 -08:00
Phil Ringnalda
4c61fdbad1 Merge m-c to f-t 2014-03-08 17:49:31 -08:00
Phil Ringnalda
7e513c242e Merge f-t to m-c 2014-03-08 17:41:33 -08:00
Phil Ringnalda
210a5ea462 Merge m-i to m-c 2014-03-08 17:39:51 -08:00
Phil Ringnalda
72258d6466 Back out 3d8d5d2cb384 (bug 980835) and 47bce8cc31b4 (bug 757866) for test failures 2014-03-08 17:33:50 -08:00
Mihai Sucan
1d97fa94b9 Bug 980835 - Fix for intermittent | browser_webconsole_output_dom_elements_02.js | The current inspector selection is correct - Got [object HTMLParagraphElement], expected [object HTMLBodyElement]; r=me 2014-03-08 23:13:59 +02:00
Patrick Brosset
aae8d65399 Bug 757866 - Highlight and select DOM nodes in the web console output; r=msucan 2014-03-08 23:11:11 +02:00
Ehsan Akhgari
c19a4c1e4d Bug 935778 - Part 0.8: Spray some more MOZ_DECLARE_REFCOUNTED_TYPENAME across the tree 2014-03-08 12:14:32 -05:00
Brian Hackett
0650353515 Bug 980450 - Add test. 2014-03-08 07:55:55 -07:00
Andrew McCreight
b6035c87a3 Bug 977940, part 2 - Don't automatically trigger the ghost window detector during ICC. r=smaug 2014-03-08 05:38:53 -08:00
Andrew McCreight
441f162633 Bug 977940, part 1 - Don't run the ghost window detector more than every 45 seconds. r=smaug 2014-03-08 05:38:52 -08:00
ffxbld
e00ef3a7af No bug, Automated HSTS preload list update from host bld-linux64-spot-041 - a=hsts-update 2014-03-08 04:29:12 -08:00
ffxbld
527f09f516 No bug, Automated blocklist update from host bld-linux64-spot-139 - a=blocklist-update 2014-03-08 04:26:39 -08:00
B2G Bumper Bot
020a61905a Bumping manifests a=b2g-bump 2014-03-08 02:41:24 -08:00
B2G Bumper Bot
db5917ab8e Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/f94c21efd153
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Merge pull request #16905 from Rik/sim-notification-wording-979453

Bug 979453 -  Change DualSIM notification from "SIM 1 -" to "(SIM 1)" r=etienne

========

https://hg.mozilla.org/integration/gaia-central/rev/e6c4a20d93b3
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Bug 979453 -  Change DualSIM notification from "SIM 1 -" to "(SIM 1)"
2014-03-08 02:35:23 -08:00