Commit Graph

126608 Commits

Author SHA1 Message Date
Bobby Holley
41aa31ecd6 Bug 854480 - Remove old-style unwrapping from nsDOMClassInfo. r=mrbkap 2013-04-01 15:17:50 -07:00
Bobby Holley
e231772ba1 Bug 854480 - Remove old-style unwrapping from dom/bindings bindings. r=bz 2013-04-01 15:17:50 -07:00
Randell Jesup
4e7aa22f55 Bug 856644: Make signaling_unittests understand the changes in datachannel negotiation r=ekr 2013-04-01 18:16:03 -04:00
Ehsan Akhgari
f89c6909de Bug 855990 - Part 1: Implement the DOM bindings to AnalyserNode; r=bzbarsky 2013-03-31 23:41:14 -04:00
Trevor Saunders
251739cae0 bug 856705 - fix layout/style/ SwapElements() callers to not look at the return value r=bz 2013-04-01 13:46:26 -04:00
Boris Zbarsky
fc8c6e8cc0 Bug 854439. Expose the underlying JS object of scripted event listeners on nsIEventListenerInfo. r=smaug 2013-04-01 17:17:56 -04:00
Boris Zbarsky
436faf79ed Bug 841429. Fix callback codegen for optional arguments with default values. r=mccr8
The change to enum wrapping is just to fix an indentation bug I ran into while reading the generated code for some of these test methods.
2013-04-01 17:17:17 -04:00
Boris Zbarsky
425b25741d Bug 792215. Convert quickstubs to using JSNative getters and setters. r=peterv 2012-09-25 14:44:40 -04:00
Terrence Cole
af012662e0 Bug 854029 - Allow use of non-gcthing values with RelocatableValue; r=billm
--HG--
rename : content/svg/content/src/SVGFEMorphologyElement.h => content/svg/content/src/nsSVGFilters.cpp
rename : content/svg/content/test/selectSubString-helper.svg => content/svg/content/test/getSubStringLength-helper.svg
rename : content/svg/content/test/test_selectSubString.xhtml => content/svg/content/test/test_getSubStringLength.xhtml
rename : intl/icu/source/config/mh-msys-msvc => intl/icu/source/config/mh-cygwin-msvc
rename : layout/reftests/svg/text/selectSubString-2-ref.svg => layout/reftests/svg/text/simple-selection.svg
extra : rebase_source : 39ef8fef55bf6e540d41e6d12a4e73859833c0a7
2013-03-25 11:48:25 -07:00
Douglas Crosher
b3896b0fe2 Bug 854045 - Enable OdinMonkey on x86 Android (r=vlad)
--HG--
extra : rebase_source : ff297d14cae42f1152d00698ee7bde858dce7239
2013-03-28 17:08:18 +11:00
Terrence Cole
cbebf44c68 Bug 847728 - Fix an intermittent rooting analysis failure; r=sfink 2013-03-29 18:43:02 -07:00
Vasil Dimov
b7eb55c54c Bug 856671 - Fix TestTiledLayerBuffer.cpp when running with DEBUG. r=BenWa DONTBUILD as NPOTB
--HG--
extra : rebase_source : 1cbed3c0d90e67fcd2e29ddb7bff4fc16f35f6e0
2013-04-01 15:24:29 -04:00
Norbert Lindenberg
4a1ad72151 Bug 837950 - Enhance jstests framework to support Test402 tests. r=terrence
--HG--
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/bootstrap.js => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/bootstrap.js
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/install.rdf => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/install.rdf
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/options.xul => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/options.xul
rename : toolkit/mozapps/extensions/test/browser/browser_inlinesettings_info.js => toolkit/mozapps/extensions/test/browser/browser_inlinesettings.js
extra : rebase_source : ab5a368d3fff88bad5144188689d1c969562e4d4
2013-04-01 11:33:21 -07:00
Luke Wagner
2773350c87 Bug 855442 - apply review comments (r=terrence) 2013-04-01 11:40:59 -07:00
Kyle Machulis
5aa83c3e11 Bug 855465 - Add emacs python mode comments to moz.build files; r=gps 2013-04-01 11:36:59 -07:00
Ryan VanderMeulen
ddbd2e4e9d Merge m-c to inbound. 2013-04-01 14:32:42 -04:00
Bhavana Bajaj
ef0002a97b Merging in version bump NO BUG 2013-04-01 11:28:13 -07:00
Bhavana Bajaj
0a13a838fe Added tag FIREFOX_AURORA_22_BASE for changeset 1c070ab0f9db 2013-04-01 11:21:20 -07:00
Luke Wagner
e5e593b1ba Bug 855442 - Root script source using JSStableString instead of JSFlatString (r=terrence)
--HG--
extra : rebase_source : 987a38d6ad43db34cad7e5ef4bac446443f29a16
2013-04-01 11:02:12 -07:00
Ryan VanderMeulen
4f708913cb Merge inbound to m-c. 2013-04-01 13:36:59 -04:00
Ryan VanderMeulen
dbd0f64e61 Bug 856383 - Update pdf.js to version 0.7.423. r=yury 2013-04-01 11:31:07 -04:00
Mats Palmgren
a9123c3d10 Bug 729519 - Allocate heap nsFrameLists from the shell arena. r=bzbarsky
"new nsFrameList()" becomes "new (shell) nsFrameList()".
"delete list" becomes "if (list) list->Delete(shell)" - note also that
an additional assertion was added that list is empty when deleted.

"nsAutoPtr<nsFrameList> list(StealSomeFrames())" becomes
"AutoFrameListPtr list(aPresContext, StealSomeFrames())"
2013-04-01 17:26:02 +02:00
Mats Palmgren
0a84b8dbff Bug 729519 - Make frames destroy all child frames and remove their nsFrameList properties when destroyed. r=bzbarsky
Specifically, this wasn't done for the OutsideBullet list which was
destroyed by the property destructor, potentially after the entire
frame tree was gone.  Now we'll assert that the property destructor
isn't called.

Use SafelyDestroyFrameListProp when destroying PushedFloat and
OverflowOutOfFlows frame lists since it's more robust.

Destroy [Excess]OverflowContainers frame lists if they exist, regardless
of the IsFrameOfType(nsIFrame::eCanContainOverflowContainers) bit
(since the oveflow continuation tracker doesn't check that before
creating these lists -- this was the source of crash bugs before
that bit was added to ColumnSetFrame).

Assert in SetPropTableFrames that the property doesn't exist, because
if it does the property destructor will run, which isn't supported.
2013-04-01 17:26:02 +02:00
Mats Palmgren
38a10ed36f Bug 729519 - Allocate nsFrameList::sEmptyList from the .rodata segment, not the heap. r=bzbarsky 2013-04-01 17:26:02 +02:00
Mats Palmgren
967a2209e1 Bug 729519 - Simplify DestroyOverflowList() by requiring that the list is empty. r=bzbarsky 2013-04-01 17:26:02 +02:00
Mats Palmgren
8f57ed6edc Bug 729519 - Use SafelyDestroyFrameListProp also for the OverflowList. r=bzbarsky 2013-04-01 17:26:02 +02:00
Mats Palmgren
c65839b418 Bug 855917 - Minor nsAbsoluteContainingBlock code cleanup. r=dholbert 2013-04-01 17:26:01 +02:00
Ryan VanderMeulen
6e8f538b10 Merge m-c to fx-team. 2013-04-01 10:47:29 -04:00
Do Nhat Minh
6bc5d009dc Bug 845478 - Use JS::CallArgs instead of manual argc/vp+JS_SET_RVAL/JS_ARGV/etc in Profilers.cpp. r=Ms2ger 2013-04-01 10:43:48 -04:00
Nikhil Marathe
1a4e34fa22 Bug 856280 - Remove extra import services-common/utils.js. r=dougt 2013-04-01 10:37:51 -04:00
Quentin Headen
7ace361fc4 Bug 802454 - Log messages for 404 errors when checking for add-on updates should include the URL. r=Unfocused 2013-04-01 22:15:40 +13:00
Blair McBride
220836a673 Bug 837008 - Make the Add-ons Manager search textbox adapt to small window size. r=Mossop 2013-04-01 22:08:36 +13:00
Blair McBride
5102e7f46a Bug 806271 - Introduce new settings type, OPTIONS_TYPE_INLINE_INFO. r=Mossop
--HG--
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/bootstrap.js => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/bootstrap.js
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/install.rdf => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/install.rdf
rename : toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1/options.xul => toolkit/mozapps/extensions/test/browser/addons/browser_inlinesettings1_info/options.xul
rename : toolkit/mozapps/extensions/test/browser/browser_inlinesettings.js => toolkit/mozapps/extensions/test/browser/browser_inlinesettings_info.js
2013-04-01 22:07:23 +13:00
Blair McBride
43a322e15d Bug 847867 - Ensure extensions.bootstrappedAddons is updated to reflect live changes. r=Mossop 2013-04-01 21:58:16 +13:00
Jason Smith
ee2a8dc56a Bug 855796 - Crashtest for sdp_attr_fmtp_no_value crash. r=ethanhugg 2013-03-31 19:35:35 -07:00
Eitan Isaacson
eda035881b Bug 856252 - Explicitly set next focused view when arrowing down from BrowserToolBar. r=kats r=sriram 2013-04-01 10:55:24 -07:00
Edward Lee
846d5c6e28 Bug 856638 - Allow passing PopupNotification options to _showPrompt in nsBrowserGlue.js [r=dolske]
Add an options parameter and use that variable for the existing pointerLock options. Update existing callers to pass in null.

--HG--
extra : rebase_source : e453cf66b75eeda03feb31aeeb0a2c1cf0871ef5
2013-04-01 10:38:36 -07:00
Jan Varga
c60929486c Bug 854323 - Move IDBFactory to Paris bindings. r=khuey 2013-03-31 10:18:30 +02:00
Ryan VanderMeulen
9b37c46991 Merge m-c to inbound. 2013-03-30 19:28:34 -04:00
Ryan VanderMeulen
09552761fb Backed out changeset badf8d382f79 (bug 850210) for frequent mochitest-bc failures on a CLOSED TREE. 2013-03-30 16:48:44 -04:00
Ryan VanderMeulen
43dcf89e96 Backed out changeset 3a242f8d8298 (bug 856032) for mochitest-2 failures. 2013-03-30 16:15:06 -04:00
Ehsan Akhgari
3ce66ebdfa Bug 856341 - Make gfxFcFontEntry::mPatterns fallible; r=jfkthame 2013-03-30 14:20:26 -04:00
Ben Turner
8ae3c0bbf4 Bug 856032 - 'Quota management enabled even for origins with unlimited permission granted'. r=janv. 2013-03-30 11:30:16 -07:00
Panos Astithas
c36c05a53a Backout a69d60d90110 (bug 772119) for bustage 2013-03-30 19:37:00 +02:00
Suhas Nandakumar
7eabfa6918 Bug 845357 - Patch to order writes/reads of CCApp state between threads r=jesup,ehugg 2013-03-30 08:54:36 -07:00
ffxbld
ede50310b8 No bug, Automated blocklist update from host bld-centos6-hp-015 - a=blocklist-update 2013-03-30 03:15:41 -07:00
Adam Dane [:hobophobe]
4dd16a1690 Bug 854075 - Use mouse{over,out} for positional hover attribs on tabs. r=dao 2013-03-29 16:34:56 -05:00
David Rajchenbach-Teller
96ccd1fb65 Bug 853860 - outExecutionDuration now accumulates durations. r=froydnj 2013-04-01 10:37:51 -04:00
Cykesiopka
53fdbee4d9 Bug 799089 - Remove error console filter timeout hack. r=Neil 2013-04-01 10:37:50 -04:00
Kartikaya Gupta
fa4c16eee2 Bug 856039 - Default to keeping the fixed layer margins in setViewportMetrics. r=Cwiiis 2013-04-01 10:17:38 -04:00