Matt Brubeck
09cf38f1e6
Bug 654127 - Cache "contentMightCaptureMouse" attribute per tab instead of globally [r=wesj]
2011-05-02 10:43:28 -07:00
Matt Brubeck
1c285487e5
Bug 653990 - Minor bustage fixes for touch events [r=wesj]
2011-05-02 10:43:25 -07:00
Philipp von Weitershausen
429b648b81
Merge mozilla-central to services-central
2011-05-02 09:30:49 -07:00
Marina Samuel
f071d568d6
Bug 652483 - Sync UI: When printing or saving a sync key, the dialog prompts you to change it. r=philikon
2011-05-02 09:26:31 -07:00
Marco Bonardo
db923839ce
Merging Places to mozilla-central
2011-05-02 13:33:27 +02:00
Robert Longson
d3f15b07db
Bug 643419 - pathLength should affect stroke-dasharray. r=dholbert
2011-05-01 19:26:20 +01:00
Jacek Caban
711289385c
Bug 643772 - dom/plugins can't compile on mingw due to implicit function pointer to void* casts r=benjamin
2011-05-02 12:34:14 +00:00
Jonathan Kew
6a0388114b
bug 33032 - synthesize various Unicode space characters rather than showing missing glyphs. r=jdaggett
2011-05-02 10:01:55 +01:00
Richard Newman
726c4ff515
Bug 653307: Adjust reCAPTCHA NoScript hack in Sync. r=philiKON
2011-04-29 10:57:59 -07:00
Phil Ringnalda
37239bed15
Bug 652473 - PlacesUIUtils deprecation messages need to lay off the whitespace.
...
r=mak
2011-04-29 18:47:15 +02:00
Marco Bonardo
5bab90c7db
Bug 619623 - Disable Idle Service to check if it's related with the intermittent failure.
...
r=sdwilsh
2011-04-29 18:12:23 +02:00
Marco Bonardo
00c605c6fc
Bug 630240 - Avoid full refreshes in history results when incremental updates are easy.
...
r=dietrich
2011-04-29 18:12:20 +02:00
Marco Bonardo
68533cc515
Merging Places to mozilla-central
2011-04-29 16:04:47 +02:00
Timothy Nikkel
f739336f73
Bug 653129. Remove useless CreateViewForFrame calls that don't do anything anymore. r=roc
2011-04-29 15:51:09 +02:00
Timothy Nikkel
ba639fd0f4
Bug 653131. nsBoxFrame::CreateViewForFrame is only used for menu popups, so simplify it and move it there. r=roc
2011-04-29 15:51:05 +02:00
Igor Bukanov
5164b785fd
bug 605029 - followup to fix inconsequel typo
2011-04-29 14:11:23 +02:00
Robert Longson
91f2e27dba
Bug 652442 - Script feature support should depend on whether javascript is enabled. r=dholbert
2011-04-29 12:28:10 +01:00
Ed Morley
6097bd945c
Bug 651657 - Remove WinCE & Windows Mobile code from dom/* ; r=jst,dolske
2011-04-29 15:50:53 +02:00
Olli Pettay
106880b08c
Bug 653497 - Once bug 335998 is fixed, SVGPathDataAndOwner::mElement leaks documents, r=dholbert
...
--HG--
extra : rebase_source : 76c024841265bbd2a0c2acecc5285074b23f4079
2011-04-29 15:33:11 +03:00
Paul Biggar
b005c6c2d4
Merge backout.
2011-04-29 04:01:23 -07:00
Paul Biggar
15828cd649
Backed out changeset 334ada87e329 (bug 628332) - those a11y errors arrived at the same time as this landing, so backing this out to see if that fixes it.
2011-04-29 04:00:57 -07:00
Marco Bonardo
281f764ca6
bug 651315 (followup) - Fix the test on Linux and Mac.
2011-04-29 12:43:39 +02:00
Marina Samuel
d1684b79dd
Bug 645883 - "Deactivate this device" should not default to action. r=rnewman
2011-04-29 01:21:06 -07:00
Marina Samuel
243633a44f
Bug 621517 - Sync UI: Add a Device wizard pixel-shifts while validating J-PAKE pin. r=rnewman
2011-04-29 01:20:35 -07:00
Benjamin Stover
5eaa4bb6b0
Bug 650965 Permaorange, log waitForAndContinue and more sanity checks r=wesj
2011-04-28 20:24:40 -07:00
Daniel Holbert
aab166bc79
Bug 649440 test: Convert randomorange reftest img-anim-1.html into a chrome mochitest that polls for onStopFrame notifications until animation completes. r=joe
...
--HG--
rename : layout/reftests/svg/as-image/lime-anim-100x100.svg => modules/libpr0n/test/mochitest/lime-anim-100x100.svg
2011-04-28 19:12:02 -07:00
Daniel Holbert
134d4156e0
Bug 649440 followup: remove some obsolete MOZ_ENABLE_LIBXUL ifdefs in VectorImage. r=joe
2011-04-28 19:11:16 -07:00
Daniel Holbert
65f04da09e
Bug 649440: Fire OnStopFrame notification on each redraw request in SVG images. r=joe
2011-04-28 19:11:16 -07:00
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
Marco Bonardo
b1af1ebb06
Bug 638123 (followup) - Remove extraneous semicolon to make Linux happy.
2011-04-28 21:47:10 +02:00
Marco Bonardo
64f53660f8
Bug 652379 - place:folder=-1 returns a non-empty result.
...
r=dietrich
2011-04-28 19:59:39 +02:00
Marco Bonardo
da6b6004f1
Bug 644727 - intermittent failure in test_faviconService_expireAllFavicons.js.
...
rs=me
2011-04-28 19:59:35 +02:00
Wladimir Palant
df4582b112
Bug 651315 - Addon manager is unable to open dialogs from a chrome-like protocol.
...
r=jst,bz
2011-04-28 19:59:32 +02:00
Marco Bonardo
bb49951f5b
Test for bug 651315.
...
r=dtownsend
2011-04-28 19:59:26 +02:00
Marco Bonardo
5628a61652
Bug 638123 - Test for bug 637957.
...
r=sdwilsh
2011-04-28 19:55:09 +02:00
timeless@mozdev.org
e4ba3540e8
Bug 620627 PlacesSQLQueryBuilder::SelectAsDay() is not l12y friendly.
...
Further modified by Marco Bonardo (f=gandalf)
r=mak
2011-04-28 19:55:06 +02:00
Olli Pettay
52d1607b54
Bug 653420 - nsHTMLMediaElement should traverse/unlink mSourceLoadCandidate, r=chris@pearce.org.nz?
...
--HG--
extra : rebase_source : fa3e87f031dced4391e2caa83541d1c85ecb62c9
2011-04-28 17:08:03 +03:00
Jonathan Kew
450943ec19
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
012d4ea43f
bug 653408 - [ots] fix GDEF sanitizer so it doesn't reject LinLibertine. r=jdaggett
2011-05-02 10:01:54 +01:00
Jonathan Kew
306e33cbda
bug 653705 - ensure mIsCFF is not left uninitialized for downloaded fonts. r=jdaggett
2011-05-02 10:01:54 +01:00
Makoto Kato
85a1e8b028
Bug 652299 - Remove unnecessary character conversion in CreateNPAPIPlugin. r=bsmedberg
2011-05-02 15:42:34 +09:00
Brandon Bohrer
05dece2bf6
Bug 635170 - DeCOM nsIWin32Locale. r=smontagu
...
--HG--
rename : intl/locale/public/nsIWin32Locale.h => intl/locale/public/nsWin32Locale.h
rename : intl/locale/src/windows/nsIWin32LocaleImpl.cpp => intl/locale/src/windows/nsWin32Locale.cpp
2011-05-02 17:49:11 +09:00