Commit Graph

98873 Commits

Author SHA1 Message Date
Bobby Holley
1a88142535 Bug 763343 - Handle classinfo singletons in cross-compartment wrapping. r=peterv 2012-07-13 14:33:25 +02:00
Jeff Muizelaar
091c38ffda Bug 683243. Dither 16 bit gradients. r=BenWa
This does a 2x2 ordered dither in the same way that Skia does.

One of the things I'm currently unhappy with is that it duplicates
the gradient walker code for 16 bits. We could turn it into a large
macro that does the appropriate things for 16 bit and 32 bit
versions, but that's not particularly appealing.
2012-07-04 11:42:29 -04:00
Jeff Muizelaar
3770f17103 Bug 683243. Add a 16 bit pipeline. r=BenWa
This is to support dithering 16 bit gradients with decent performance.
2012-07-11 12:58:17 -04:00
Bobby Holley
1aa5fdf95c Bug 771202 - Tests. r=bsmedberg 2012-07-13 13:20:08 +02:00
Ed Morley
4bae122cc8 Backout 14e984035ca5 (bug 773534) for bustage 2012-07-13 11:36:21 +01:00
Chris Pearce
cb6e111f08 Bug 772743 - Add pref to not make the widget fullscreen when entering fullscreen. Set it to true for b2g desktop client. r=mounir 2012-07-13 22:21:23 +12:00
Vivien Nicolas
9bdb2f977b Bug 773534 - Show briefly the typed character for <input type=password>. r=mwu 2012-07-13 12:17:37 +02:00
Alive Kuo
8b1ab1b3b2 Bug 767311 - Migrate volume change to mozSettings. r=vingtetun 2012-07-13 12:17:37 +02:00
Ed Morley
a8e51c3df7 Backout 776f008404bf (bug 771202) for mochitest-3 orange 2012-07-13 11:07:26 +01:00
Bobby Holley
50c6d52c5a Bug 771202 - Don't double-call OnWrapperDestroyed. r=bsmedberg
Calling OnWrapperDestroyed at this point in OnDestroy doesn't make sense, because the JS objects have a finalize hook that also calls OnWrapperDestroyed regardless of whether or not they still have a pointer stashed in their private. So when we do this, we get a bunch of assertions about unmatched calls to OnWrapperDestroyed.

AFAICT the only reason this worked before is that this code never ran: I put a MOZ_ASSERT just before call to OnWrappedDestroyed in OnDestroy, and it never fired during the dom/plugins mochitests.
2012-07-13 10:56:38 +02:00
Bobby Holley
ba801827f7 Bug 771202 - Tests. r=bsmedberg 2012-07-13 10:55:14 +02:00
Bobby Holley
b3d24f5084 Bug 771202 - Unwrap object arguments passed to plugins. r=bsmedberg 2012-07-13 10:55:14 +02:00
Bobby Holley
b629b15aeb Bug 771202 - Implement post-transplant plugin behavior. r=bsmedberg 2012-07-13 10:55:14 +02:00
Bobby Holley
c3555699ca Bug 771202 - Make the prototype climbing code in nsJSNPRuntime unwrap security wrappers. r=bsmedberg 2012-07-13 10:55:14 +02:00
Bobby Holley
36dc1f0877 Bug 771202 - Add a PostTransplant nsIXPCScriptable hook. r=peterv 2012-07-13 10:55:14 +02:00
Nicholas Nethercote
d3831f9782 Bug 749010 (part 2) - Move code around to merge two anonymous namespaces; no functional changes. r=bent. 2012-07-12 23:51:01 -07:00
Nicholas Nethercote
c571f4c861 Bug 749010 (part 1) - Make WorkerMemoryReporter less crashy. r=bent.
--HG--
extra : rebase_source : 9c73e73ef71968236ed15cf5e7afab3d113a350a
2012-05-29 19:39:38 -07:00
Aryeh Gregor
0f9c1ead04 Bug 771994 - Make nsRangeStore refcounted; r=ehsan 2012-07-13 09:31:15 +03:00
Eitan Isaacson
2233ab8270 Bug 773039 - Don't populate menu accessibility event with descendant strings. r=blassey 2012-07-12 23:09:58 -07:00
Gian-Carlo Pascutto
3749fbecb7 Bug 772676 - History visit counts are all 1 after migration. r=margaret 2012-07-13 07:49:38 +02:00
Gian-Carlo Pascutto
2c4deadd59 Bug 772676 - Test history visit counts after migration. r=margaret 2012-07-13 07:49:37 +02:00
Jan Varga
98be9f5caf Bug 773182 - Remove unused db description parameter from IDB mochitests. r=sicking 2012-07-13 07:37:28 +02:00
Felipe Gomes
6368ea4947 Bug 630567. Disable test_taskbarprogress_service.xul due to frequent failures. r=philor 2012-07-12 22:37:37 -07:00
Phil Ringnalda
cfef187ad4 Back out 0c1f34eb5b93 and 0f987ac28e8c (bug 683243) for Android R2 bustage 2012-07-12 22:27:34 -07:00
Matt Brubeck
0411dc0d8a Bug 755221 - Make the button to cancel an add-on uninstall clearer [r=mfinkle] 2012-07-12 22:16:28 -07:00
David Zbarsky
d14863e0c2 Bug 772759 - Fix a few build warnings r=bsmedberg 2012-07-12 22:11:05 -07:00
Robert O'Callahan
c7d51b4a52 Backout e42786561b60 (bug 772679) for reftest failures. 2012-07-13 17:03:54 +12:00
Robert O'Callahan
977ff1f2be Bug 772679. RestrictToLayerPixels needs to accurately convert between appunits scroll offsets and ThebesLayer pixel coordinates. r=tnikkel 2012-07-13 16:01:41 +12:00
Robert O'Callahan
8c17dd8477 Bug 771822. Fire overflow/underflow events as will-paint observers, to avoid having them trigger flushing at unnecessary times. r=bz 2012-07-13 16:01:41 +12:00
Jeff Muizelaar
40983c8443 Bug 683243. Dither 16 bit gradients. r=BenWa
This does a 2x2 ordered dither in the same way that Skia does.

One of the things I'm currently unhappy with is that it duplicates
the gradient walker code for 16 bits. We could turn it into a large
macro that does the appropriate things for 16 bit and 32 bit
versions, but that's not particularly appealing.

--HG--
extra : rebase_source : ef89cd53d68166db825bb993e1262db342ba9b5d
2012-07-04 11:42:29 -04:00
Jeff Muizelaar
6d431e1711 Bug 683243. Add a 16 bit pipeline. r=BenWa
This is to support dithering 16 bit gradients with decent performance.

--HG--
extra : rebase_source : cffa90d5959211c8c1953867d85c7799ed52d662
2012-07-11 12:58:17 -04:00
Makoto Kato
578f93622b Bug 772327 - Password mask timer is too short on Android. r=blassy 2012-07-13 11:26:20 +09:00
Vivien Nicolas
58d773ea44 Bug 770869 - Ignore input type='image' in the IME API. r=fabrice 2012-07-13 04:28:19 +02:00
Vivien Nicolas
fe9c53910e Bug 771518 - ContentPermissionPrompt.js is broken since Bug 757137 landed. r=fabrice 2012-07-13 04:28:19 +02:00
Ryan VanderMeulen
09bff6c590 Backout 7ddda33608c6 (bug 772672) due to robocop orange. 2012-07-12 21:35:19 -04:00
Eric Faust
8cc5a05403 Bug 766447 - Teach TI about the new DOM bindings. (r=bhackett) 2012-07-11 20:55:19 -07:00
Jason Duell
55c4b6acdf Bug 773150 - FailDelayManager passing wrong type to MOZ_COUNT_CTR. r=mcmanus 2012-07-12 18:19:45 -07:00
Ryan VanderMeulen
1408fc670a No bug - fix broken m-c merge. 2012-07-12 21:17:21 -04:00
Ryan VanderMeulen
166dcf4016 Merge m-c to inbound. 2012-07-12 21:17:15 -04:00
Ryan VanderMeulen
04024b44bc Merge m-c to inbound. 2012-07-12 21:12:17 -04:00
Jonathan Griffin
5228095c25 Bug 772310 - Check if pref exists before attempting to read from it, r=mdas 2012-07-12 18:01:45 -07:00
Ryan VanderMeulen
7b319a5a6b Merge the last PGO-green inbound changeset to m-c. 2012-07-12 20:46:27 -04:00
Ryan VanderMeulen
fc6826fa44 Backout de697e323b39, b778d551c9e5, and 4b9414cba94d (bug 544088) due to build bustage. 2012-07-12 19:52:15 -04:00
Jeff Walden
c789b193fa Bug 773049 - Fix a comment typo noted by terrence over IRC, DONTBUILD to save resources. r=lumpy 2012-07-12 16:42:26 -07:00
Benjamin Peterson
bedf163a14 Bug 773115 - Remove unneeded needStrictChecks() call. r=njn 2012-07-12 19:28:54 -04:00
Blake Kaplan
0ce9202fae Bug 772801 - Deal with drivers that don't support active/passive scanning. r=mwu DONTBUILD 2012-07-12 15:09:18 -07:00
Gian-Carlo Pascutto
17bec06ee3 Bug 769896 - Make "Import from Android" use MultiChoicePreference. r=bnicholson 2012-07-12 20:44:31 +02:00
Brian Hackett
da6b1a78cd Add more rooting for interpreter, TI and JIT, bug 772303, r=terrence. Also disable Windows PGO for RegExp.cpp because the compiler is broken. 2012-07-12 12:36:27 -06:00
Margaret Leibovic
71b8d54289 Bug 773177 - java.lang.NullPointerException: at org.mozilla.gecko.TabsTray$TabsAdapter.refreshTabsData(TabsTray.java). r=mfinkle 2012-07-12 11:09:47 -07:00
Margaret Leibovic
d3d536b6d5 Bug 770160 - Page title changes for a brief period when a new page is loaded. r=mfinkle 2012-07-12 11:09:40 -07:00