Daniel Holbert
b166f2a101
Bug 649440 followup: remove some obsolete MOZ_ENABLE_LIBXUL ifdefs in VectorImage. r=joe
2011-04-28 19:11:16 -07:00
Daniel Holbert
d9eccb862a
Bug 649440: Fire OnStopFrame notification on each redraw request in SVG images. r=joe
2011-04-28 19:11:16 -07:00
Chris Jones
e4bc95890c
Bug 651059: Fix (benign) read/write race on AsyncChannel.mChannelState. r=bent
2011-04-28 19:15:03 -05:00
Boris Zbarsky
2d337f0522
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
dc8fd85183
Bug 650965 Permaorange, logging for Fennec's extension manager r=wesj
2011-04-28 16:29:38 -07:00
Benjamin Stover
633ec13004
Bug 653586 Support mochitest-browser-chrome target for Fennec r=blassey
2011-04-28 16:29:36 -07:00
Josh Aas
3c5bbfe193
Bug 606641: Cleanup for plugin initialization. r=bz
2011-04-28 16:08:33 -04:00
Josh Aas
7d3127c3ae
Bug 653349: Clean up nsPluginHost::FindPluginForType. r=jst
2011-04-28 16:06:15 -04:00
Josh Aas
ee97d7ac20
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
9a488f5a7e
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
d4829d7fc0
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
74fec8a95b
Bug 652850: SafeInstallOperation can't rollback move operations. r=robstrong
2011-04-27 10:40:10 -07:00
Dave Townsend
c03e017f93
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
367da5bae1
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
169e3209e1
Bug 650965 Permaorange, add logging for addons tests r=mbrubeck
2011-04-28 13:47:22 -07:00
Christian Biesinger
f0c56c0c72
Unbreak android from cset acb6850ca38c / Bug 650429 - it doesn't have getpass.
2011-04-28 13:15:46 -07:00
Neil Rashbrook
e349342422
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
5cab090414
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
9eea858322
Bug 652787 - Change threshold for low memory warning to 300000 kB; r=blassey
2011-04-28 15:34:48 -04:00
Daniel Holbert
5980b0a29a
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
bfc033911f
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
bb6201a086
Bug 653270: Simplify nsSMILAnimationController construction/initialization. r=jwatt
2011-04-28 12:02:20 -07:00
Daniel Holbert
aec18cfbff
Bug 649568: Clean up logic for addition & interpolation in SVGPathSegListSMILType. r=jwatt
2011-04-28 12:02:10 -07:00
Christian Biesinger
fc9ad38a0f
Bug 650429 - Enable TestProtocols with libxul
...
r=bz
2011-04-28 11:30:30 -07:00
L. David Baron
3d424c6d15
Fix comment describing nsHTMLReflowState::availableWidth. (Bug 653356) r=bzbarsky
2011-04-28 10:21:37 -07:00
L. David Baron
6c68aef211
Add support for regexp() function in @-moz-document rule. (Bug 398962) r=bzbarsky
2011-04-28 10:21:37 -07:00
L. David Baron
2ee5bebdb6
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
8c5dc15b9c
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
f0c3913fba
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
5fba39075d
bug 649502: Expose histograms to JS r=mrbkap
2011-04-27 11:07:02 -07:00
Wes Johnston
3ac76c1c9c
Bug 652545 - Dont inherit toolkit dialog binding for Fennec content-dialogs. r=mfinkle
2011-04-28 09:21:27 -07:00
Justin Lebar
823150964d
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
faec066224
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
608b81e08c
Bug 651861 - ipc/chromium compilation broken on mingw
...
r=jones.chris.g
2011-04-28 11:36:38 +00:00
Jacek Caban
9eafb62034
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
d7dbfeda96
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
580718d5ee
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
2fbe4d0281
Backed out changeset 52b6489a3140 (bug 653100) because of reftest oranges.
2011-04-28 10:52:04 +01:00
Jonathan Kew
5954624b8d
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
16bf57f046
bug 653098 - remove unused function gfxUserFontSet::RemoveFamily. r=jdaggett
2011-04-28 09:01:19 +01:00
Henri Sivonen
c76ccda074
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
fc47678885
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
7e865519aa
bug 608940 - remove unused function gfxTextRun::Clone. r=jdaggett
2011-04-28 06:06:53 +01:00
Jonathan Kew
66f00dfb18
bug 650639 - cancel current font-downloaders when updating the user font set. r=dbaron
2011-04-28 06:04:45 +01:00
Kyle Huey
dcbabebefc
Backing out Bug 652301 because of orange.
2011-04-27 20:12:51 -04:00
Kyle Huey
9b98dbcd7b
Backed out changeset 72430b4913e4
2011-04-27 20:12:27 -04:00
Kyle Huey
49f86fcf1a
Backing out attempted orange fix.
2011-04-27 20:11:50 -04:00
Kyle Huey
44f0655932
Backed out changeset 12f371cb3c7e
2011-04-27 20:11:28 -04:00
Kyle Huey
7a0755b695
Back out Bug 647570 because it's failing test_bug465752.js
2011-04-27 19:10:49 -04:00
Kyle Huey
4d542f23d4
Backed out changeset ea9f9f5503fa
2011-04-27 19:10:01 -04:00