Commit Graph

68464 Commits

Author SHA1 Message Date
Chris Jones
a886978274 Bug 651059: Fix (benign) read/write race on AsyncChannel.mChannelState. r=bent 2011-04-28 19:15:03 -05:00
Boris Zbarsky
dd94d998a3 Bug 650379. Add a new XPCOM timer type that is like TYPE_REPEATING_PRECISE but does not swamp the event queue if the callback takes longer than the timer interval to run. r=cjones, sr=brendan
This implements proposal 3 from bug 650379 comment 13.  The main difference
between TYPE_REPEATING_PRECISE and TYPE_REPEATING_PRECISE_CAN_SKIP is to not
AddTimer the REPEATING_PRECISE_CAN_SKIP timer until after the callback has run;
this guarantees that no more timer events will be posted until after the
callback finishes executing.  A secondary change is to make
REPEATING_PRECISE_CAN_SKIP timers advance their firing time to mDelay from when
PostTimerEvent is called, not mDelay from the old mTimeout.  While this arguably
makes them less precise, the alternative is that if a timer is significantly
delayed for some reason (e.g. because the user puts the computer to sleep for a
while) it will then fire a whole bunch of times to "catch up" to where it's
supposed to be, advancing its firing time by mDelay at a time.  That seems
undesirable.

An alternate approach would have been to readd the timer from inside
PostTimerEvent, but only if we're not in the middle of firing the timer. That
would allow more precise timers in the case when the callback is not taking too
long, but still handle gracefully the case when the callback is
slow. Unfortunately this falls down if something _else_ is hogging the main
thread event loop (e.g. some other timer has a slow callback, or whatever); in
that case we would post multiple events for the one precise timer while the
event-loop-hogging operation is running. So I don't think we should do that.
2011-04-28 19:33:52 -04:00
Benjamin Stover
f25ab99394 Bug 650965 Permaorange, logging for Fennec's extension manager r=wesj 2011-04-28 16:29:38 -07:00
Benjamin Stover
7784f8a08b Bug 653586 Support mochitest-browser-chrome target for Fennec r=blassey 2011-04-28 16:29:36 -07:00
Josh Aas
1593af8e53 Bug 606641: Cleanup for plugin initialization. r=bz 2011-04-28 16:08:33 -04:00
Josh Aas
6eddb218f5 Bug 653349: Clean up nsPluginHost::FindPluginForType. r=jst 2011-04-28 16:06:15 -04:00
Josh Aas
13b58b2bd4 Bug 468678: Remove support for resource (.rsrc) files in Mac OS X plugins. r=smichaud 2011-04-28 16:02:35 -04:00
Cameron McCormack
8b7cc51900 Bug 653310 - Always put a dumpID property on ipc:content-shutdown notification property bags. r=cjones 2011-04-29 10:03:40 +12:00
Patrick McManus
fa5755bdc7 bug 652761 ABORT: half open complete but no item: 'index != -1' with embedded src port 80000 r=honzab 2011-04-28 17:43:24 -04:00
Dave Townsend
b2d3ddd623 Bug 652850: SafeInstallOperation can't rollback move operations. r=robstrong 2011-04-27 10:40:10 -07:00
Dave Townsend
b411b761a2 Bug 652692: Remove extensionsManagerOverlay.xul. r=gavin
try: -b do -p linux,linux64,macosx,macosx64,win32 -u xpcshell,mochitest-o -t none
2011-04-27 10:46:22 -07:00
Dave Townsend
a38ede13b3 Bug 627612: Search results for add-ons do not have the same order as returned by the AMO API. r=Unfocused 2011-04-27 10:39:45 -07:00
Benjamin Stover
c712fb1cbc Bug 650965 Permaorange, add logging for addons tests r=mbrubeck 2011-04-28 13:47:22 -07:00
Christian Biesinger
80d3f2f2bc Unbreak android from cset acb6850ca38c / Bug 650429 - it doesn't have getpass. 2011-04-28 13:15:46 -07:00
Neil Rashbrook
fefcb1dbbc Bug 647682 Can't copy and paste local links in <editor> documents r=ehsan f=bz 2011-04-28 20:59:45 +01:00
Brad Lassey
456c4cb22e bug 650209 - Allow DOMDesktopNotification to use a custom icon in the expanded android notification r=dougt 2011-04-28 15:34:50 -04:00
Geoff Brown
2b253e251c Bug 652787 - Change threshold for low memory warning to 300000 kB; r=blassey 2011-04-28 15:34:48 -04:00
Daniel Holbert
4263ad2860 Bug 653238 patch 2: Promote nsSMILAnimationController's static helper 'GetRefreshDriverForDoc' to an instance method. r=smaug 2011-04-28 12:05:24 -07:00
Daniel Holbert
abb2768190 Bug 653238 patch 1: Add nsSMILAnimationController::Disconnect to clear the controller's pointer to its doc when the doc goes away. r=smaug 2011-04-28 12:02:20 -07:00
Daniel Holbert
f3d8578086 Bug 653270: Simplify nsSMILAnimationController construction/initialization. r=jwatt 2011-04-28 12:02:20 -07:00
Daniel Holbert
f719ee4025 Bug 649568: Clean up logic for addition & interpolation in SVGPathSegListSMILType. r=jwatt 2011-04-28 12:02:10 -07:00
Christian Biesinger
1f1bfe7e3e Bug 650429 - Enable TestProtocols with libxul
r=bz
2011-04-28 11:30:30 -07:00
L. David Baron
8d8f01f096 Fix comment describing nsHTMLReflowState::availableWidth. (Bug 653356) r=bzbarsky 2011-04-28 10:21:37 -07:00
L. David Baron
b712774643 Add support for regexp() function in @-moz-document rule. (Bug 398962) r=bzbarsky 2011-04-28 10:21:37 -07:00
L. David Baron
a611dbdcb7 Don't set mNeedsRefreshes to false when we get two refreshes at the same time stamp. (Bug 651456) r=bzbarsky 2011-04-28 10:21:36 -07:00
L. David Baron
f4345b013d When we know a block can't fit, end ReflowBlockFrame early, in case a zero-height block tries to. (Bug 652178) r=roc 2011-04-28 10:21:36 -07:00
L. David Baron
e08fce9fdd Remove incorrect nulling out of members that duplicates the correct code in Shutdown. (Bug 652385) r=bzbarsky 2011-04-28 10:21:36 -07:00
Taras Glek
95a7a474c7 bug 649502: Expose histograms to JS r=mrbkap 2011-04-27 11:07:02 -07:00
Wes Johnston
0663c4de89 Bug 652545 - Dont inherit toolkit dialog binding for Fennec content-dialogs. r=mfinkle 2011-04-28 09:21:27 -07:00
Justin Lebar
7af0c522be Bug 590181 part 2 - Switch default gcc optimize options to -O3. r=ted. a=philor CLOSED TREE 2011-04-28 15:49:16 +02:00
Mike Hommey
c84f4c8776 Bug 590181 part 1 - Fix tests to avoid rounding errors. Original patch from jlebar. r=dbaron 2011-04-28 15:48:59 +02:00
Jacek Caban
0d02596cb7 Bug 651861 - ipc/chromium compilation broken on mingw
r=jones.chris.g
2011-04-28 11:36:38 +00:00
Jacek Caban
a1030aed6c Bug 651887 - Use macro for NodeWillBeDestroyed in nsXULTreeBuilder
r=bzbarsky

--HG--
extra : rebase_source : 261c3e5a407009cc0a72f27c4a645d9360e9b289
2011-04-26 11:45:23 +00:00
Jacek Caban
a245bef322 Bug 651874 - Wrong library prefixed in dependentlibs.list in mingw
compilation r=khuey

--HG--
extra : rebase_source : 7329c384e29a495352ada8082f7698757915f3e3
2011-04-26 11:45:15 +00:00
Jacek Caban
7a79d4a6ce Bug 643778 - WindowsMessageLoop.h fails to compile on case-sensitive
OSes r=benjamin

--HG--
extra : rebase_source : 03aa080043dd86c5b95c8f75bf49f7f538bfb30d
2011-04-26 11:45:08 +00:00
Jonathan Kew
fcadc04ff6 Backed out changeset 52b6489a3140 (bug 653100) because of reftest oranges. 2011-04-28 10:52:04 +01:00
Jonathan Kew
32c814b853 bug 653100 - no longer need to save copies of layout tables prior to OTS sanitization. r=jdaggett 2011-04-28 09:01:59 +01:00
Jonathan Kew
eed7de5c54 bug 653098 - remove unused function gfxUserFontSet::RemoveFamily. r=jdaggett 2011-04-28 09:01:19 +01:00
Henri Sivonen
c8bde33d64 Test for bug 642908 - Make the <noscript> handling state in the speculative document.write tree builder match the state of the non-speculative document.write tree builder. r=bzbarsky. 2011-04-28 10:01:13 +03:00
Henri Sivonen
9fbed8e805 Bug 642908 - Make the <noscript> handling state in the speculative document.write tree builder match the state of the non-speculative document.write tree builder. r=bzbarsky. 2011-04-28 10:01:13 +03:00
Jonathan Kew
0d12b6c03d bug 608940 - remove unused function gfxTextRun::Clone. r=jdaggett 2011-04-28 06:06:53 +01:00
Jonathan Kew
eb0e942dc9 bug 650639 - cancel current font-downloaders when updating the user font set. r=dbaron 2011-04-28 06:04:45 +01:00
Kyle Huey
c08d60443b Backing out Bug 652301 because of orange. 2011-04-27 20:12:51 -04:00
Kyle Huey
0d2363560b Backed out changeset 72430b4913e4 2011-04-27 20:12:27 -04:00
Kyle Huey
1c25f60376 Backing out attempted orange fix. 2011-04-27 20:11:50 -04:00
Kyle Huey
a25277c252 Backed out changeset 12f371cb3c7e 2011-04-27 20:11:28 -04:00
Kyle Huey
f814521d86 Back out Bug 647570 because it's failing test_bug465752.js 2011-04-27 19:10:49 -04:00
Kyle Huey
7cc2aa7330 Backed out changeset ea9f9f5503fa 2011-04-27 19:10:01 -04:00
Boris Zbarsky
0ed771afce Bug 652301 followup. Also don't show focus outlines on frame and iframe, since editor tests depend on that. r=dbaron 2011-04-27 18:27:38 -04:00
Boris Zbarsky
1995aaa776 Bug 652301. Show focus outlines on all focusable things in HTML, not just on a whitelist of them. r=dbaron
The :-moz-focusring style comes first so we don't have to do the :not() and :-moz-any() matching at all for the common case.

--HG--
extra : rebase_source : 330a9f4ba38a6613d3bd43f404325ea4dfcae789
2011-04-27 16:52:23 -04:00