Commit Graph

134181 Commits

Author SHA1 Message Date
Kyle Huey
756f02ce3d Bug 877584: Route JS holding through the cycle collection runtime so it can do different things on different threads. r=mccr8 2013-06-09 16:02:02 -07:00
Rodrigo Silveira
b47f85cb5c Bug 880745 - Intermittent browser_history.js r=jimm
--HG--
extra : rebase_source : 99d715d8be0a573f006822333ac1ac8445d88365
2013-06-09 12:34:30 -07:00
Ivaylo Dimitrov
b0a54a77e9 Bug 880029 - gstreamer - high CPU usage after patch for Bug 856562 landed. r=alessandro.d 2013-06-08 20:53:10 +01:00
Hannes Verschore
eb6bc7661e Bug 880891 - IonMonkey: Only trigger invalidation when decided to inline function, r=djvj 2013-06-09 11:57:59 +02:00
Mike Hommey
6a8d67e8fc Bug 874708 - Backout changeset 4655d7317a03 (part of bug 875824) now that the linker itself has a mitigation that works on the SGS4 2013-06-09 09:24:56 +02:00
Mike Hommey
5138bbb50a Bug 874708 - Hook libc's sigaction to avoid system libraries replacing our segfault handler temporarily and restoring it wrongly. r=nfroyd 2013-06-09 09:23:03 +02:00
Stephen Pohl
6100487947 Bug 877097: Check that the scrollable frame is still alive after each call to SetOpacityOnElement for the two scrollbars to avoid crashing. r=roc 2013-06-08 14:05:33 -07:00
Sankha Narayan Guria
5304247273 Bug 880265 - Remove AudioBufferSourceNode.gain; r=ehsan 2013-06-08 00:55:04 +05:30
Gijs Kruitbosch
b8e1ddc572 Backing out 0acfbc3b4941 (Bug 844818) for b2g bustage. 2013-06-08 14:50:07 +02:00
Landry Breuil
21273d6caa Bug 618485: Finally remove uintptr_t word payload union member on 64BE, it grows jsval_layout size and is unused. r=luke 2013-06-08 12:49:10 +02:00
Landry Breuil
cf54e8459e Bug 844430: Add the correct build defines to fix libsctp on NetBSD/OpenBSD/Dragonfly. r=jesup 2013-06-08 12:48:30 +02:00
Jan Beich
11c8f04dc7 Bug 844818 - Make WebRTC aware of --enable-alsa/--enable-pulseaudio. r=jesup,ted 2013-06-08 12:47:31 +02:00
Jan Beich
f058316a11 Bug 878446 - Disable libyuv asm without SSSE3 as well. r=jesup 2013-06-08 12:44:26 +02:00
C. Scott Ananian
4026e0ce22 Bug 880807 - OdinMonkey: Fix signature of int multiplication by constant (r=luke)
--HG--
extra : rebase_source : 6b4d2bcb2261c9d466e5ce8098a70212a5b7c78f
2013-06-07 18:33:50 -04:00
Jon Coppeard
af7d9a0531 Bug 860573 - Part 2 - Use spare bits of wrapper cache flags for nsINode r=smaug 2013-06-08 09:54:59 +01:00
Jon Coppeard
fa77e296a8 Bug 860573 - Part 1 - Store wrapper cache flags separately to the object pointer r=smaug 2013-06-08 09:53:21 +01:00
Boris Zbarsky
51217ccdd9 Bug 877281 another followup for the Windows bustage. r=jandem pending 2013-06-08 00:06:39 -04:00
Boris Zbarsky
8aa1bc1906 Bug 877281 bustage fix. Deal with the fact that Value has 8-byte alignment. r=jandem 2013-06-07 23:40:35 -04:00
Jason Orendorff
f7e4b064e2 Bug 880575, part 5 - Factor out EvalAndPrint from ReadEvalPrintLoop. Use CompileOptions to eliminate some more manual memory management. Make ReadEvalPrintLoop take both input and output FILEs as arguments instead of using gOutFile. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
f2e4058507 Bug 880575, part 4 - Use a Vector<char> instead of manually allocating the input buffer in ReadEvalPrintLoop. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
7e6ac96fc1 Bug 880575, part 3 - Declare variables at initialization in ReadEvalPrintLoop. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
666830c9de Bug 880575, part 2 - Factor out RunFile() from Process(). r=jwalden. 2013-06-07 22:25:07 -05:00
Jason Orendorff
1a1fb08c55 Bug 880575, part 1 - Factor out ReadEvalPrintLoop() from Process(). r=jwalden. 2013-06-07 22:25:07 -05:00
Boris Zbarsky
6a359eb980 Bug 879628. Don't screw up the text from earlier counters when using counters() with various list styles. r=dbaron 2013-06-07 22:45:46 -04:00
Boris Zbarsky
f68f0da53c Bug 872669. Slightly speed up our named proxy gets by making use of the inline chars/length getters we can have when our id is an atom. r=waldo,peterv 2013-06-07 22:45:46 -04:00
Boris Zbarsky
9f09fecc19 Bug 877281 part 6. Replace ${jsvalPtr} with a MutableHandle ${jsvalHandle}. r=peterv
It's a little unfortunate that we need both ${jsvalHandle} and
${jsvalRef}, but the only other option is to consistently have a
MutableHandle in this code.  If the thing we have to work with is a
Rooted, that means doing JS::MutableHandle<JS::Value>(&myRooted) as
the thing to substitute for ${jsvalHandle}.  Just using "&myRooted"
doesn't work, because things like "&myRooted.set()" or
"&myRooted.address()" fail, even if parenthesized as
"(&myRooted).set()", because &myRooted is actually a Rooted*, not a
MutableHandle.

We could go the JS::MutableHandle<JS::Value>(&myRooted) route if
desired; it would primarily uglify dictionary and sequence to-js
conversions.  With the setup in this patch, ideally it looks pretty
idiomatic except for the use of .set() instead of operator= on Rooted.
2013-06-07 22:45:46 -04:00
Boris Zbarsky
aec6c97d07 Bug 877281 part 5. Add a set() method to Rooted. r=terrence 2013-06-07 22:45:45 -04:00
Boris Zbarsky
19af9fb8fa Bug 877281 part 4. Eliminate uses of ${valHandle} in binding conversions and make ${val} be a handle. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
77568d97df Bug 877281 part 3. Rename valMutableHandle to mutableVal. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
34e85404c7 Bug 877281 part 2. Eliminate uses of ${valPtr} in bindings conversions. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
ec718b51e3 Bug 877281 part 1. Convert WebIDL bindings to using something CallArgs-like. r=peterv,jandem 2013-06-07 22:45:44 -04:00
Jeff Gilbert
92a42f92c9 Bug 870232 - Enable 'webgl' requests for Desktop FF. - r=bjacob 2013-06-07 17:44:51 -07:00
Trevor Saunders
5c16f8ec62 bug 852150 - handle removal of accessibles when reframe root doesn't have an accessible more correctly r=surkov 2013-03-25 19:46:22 -04:00
Trevor Saunders
f6274d24c5 bug 877886 - get rid of a number of static constructors in content/ and dom/ r=smaug 2013-05-30 18:34:53 -04:00
David Burns
802326fe77 Bug 870445 - Add -marionette command-line arg to Firefox, r=mdas 2013-05-13 13:43:15 +01:00
Gavin Sharp
27804c2fa4 Clean up browser_contextmenu.js, no bug
--HG--
extra : rebase_source : 0c06c1377f09e413740e00f4d07267853242f343
2013-06-07 15:34:25 -07:00
Hannes Verschore
d1519fbef7 Bug 876607 - Fix accidental switching of lhs/rhs in the code, rs=luke 2013-06-08 00:34:16 +02:00
Jared Wein
35be3e85f6 Bug 872711 - Fix specified property value for border-{top,bottom}-left-radius. r=mixedpuppy
--HG--
extra : rebase_source : 517d5d806e782f8f7ec54073acf08efa2d870346
2013-06-07 17:47:47 -04:00
David Zbarsky
00b41d8ad2 [Bug 879998] Remove some dead code in content/ r=Ms2ger, emk 2013-06-07 14:05:57 -07:00
David Zbarsky
31ba17013e Bug 880037: Don't try to mark message managers when we're not in the root process r=jlebar 2013-06-07 14:05:36 -07:00
Joey Armstrong
a772126bdd bug 872087: move HOST_LIBRARY to moz.build (logic) r=ted 2013-06-07 17:00:19 -04:00
Joe Drew
4ed98b9610 Bug 878751 - Port a bug fix from Chrome back to Mozilla. r=jlebar
--HG--
extra : rebase_source : d680dada2ac1932806e10c6050376a849112f523
2013-06-07 16:42:57 -04:00
Joe Drew
c99fd9b2b8 Bug 878392 - Reset Decoder::mCurrentFrame to nullptr if we fail to create a frame. r=seth
--HG--
extra : rebase_source : 1188bfd4896c687eb954ac781cd23e2d49a48959
2013-06-07 16:42:57 -04:00
Federico Paolinelli
55bcb1df9b Bug 876485 - Moved clipboard code from GeckoAppShell to a separate Clipboard class. Changed jni calls to new methods. r=cpeterson 2013-06-07 13:39:37 -07:00
Stephen Pohl
d775786d2c Bug 880753: Add public nsLookAndFeel::UseOverlayScrollbars method. r=smichaud 2013-06-07 12:44:24 -07:00
Drew Willcoxon
98105fd9ae Bug 880237 - Prevent crash in mozInlineSpellChecker::IgnoreWords by asserting mSpellCheck != null. r=ehsan 2013-06-07 12:35:50 -07:00
Jeff Hammel
7fc49a98a4 Bug 707976 - Remove manifestdestiny from its old location in m-c and use that in testing/mozbase;r=ahal
--HG--
extra : rebase_source : 78e596979ddfb001475270580afeab992694ed45
2013-06-07 12:30:11 -07:00
Joe Drew
3317047283 Bug 876499 - If a looping image is being asked to advance to a time that is more than one loop in the future, skip the intermediate frames and simply jump to the next multiple of the loop count. r=seth
When there is a long delay between calls to RequestRefresh(), for example
because an animated image has been scrolled off the screen, the current
animation frame time can be significantly behind the current time, requiring a
huge number of composites to catch up. This patch makes us skip those
intermediate composites, jumping to the closest multiple of the image's loop
time.

--HG--
extra : rebase_source : 3e9ef5bd3ad3f1e9d95def99e6bb546474a583c9
2013-06-07 15:28:24 -04:00
Ryan VanderMeulen
eeaf3c339a Merge m-c to inbound. 2013-06-07 15:28:41 -04:00
Ryan VanderMeulen
1b1910893f Merge inbound to m-c. 2013-06-07 15:27:47 -04:00