Jonas Sicking
beed1f23be
Bug 774585: Fix browser code and tests to be aware of app principals. r=mounir
2012-07-21 00:29:40 -07:00
Peter Van der Beken
a265b4162a
Fix for bug 774775 (XRayWrapper does not handle new bindings constants). r=bz.
...
--HG--
extra : rebase_source : fef985d0417c394ae5997b4450c7076005bdf870
2012-07-17 22:54:25 +02:00
Honza Bambas
b547035544
Bug 765203 - Support mode 'unknown' when parsing cache manifest, r=jduell
2012-07-14 11:52:35 +02:00
Ms2ger
6a3f956ff2
Backout 977ee9208065, a405768bd32a, 69a1fb2ddca3, 58d5f1d1443e for Moth orange.
2012-07-14 11:38:56 +02:00
Felipe Gomes
9371337a2c
Bug 771294. Use window id for webapp installation. r=gavin
...
Test by Myk Melez
2012-07-14 01:09:32 -07:00
Benoit Girard
1cb33567b2
Bug 772665 - Add console.profile to test_consoleAPI.html. r=gavin
2012-07-12 17:27:10 -04:00
Fabrice Desré
05f87de41a
Bug 772363 - Followup to fix test failures [r=fabrice]
2012-07-11 10:02:58 -07:00
Michal Novotny
c021237e50
Bug 737615 - Remove use of synchronous cache API from unit tests - dom tests, r=honzab
2012-07-11 11:18:38 +02:00
Nathan Froyd
5b30baa4c3
Bug 370750 - consolidate mochitest files installation; r=glandium
...
With assistance on the patch from Ms2ger, Waldo, and Mossop.
2012-07-03 16:49:02 -04:00
Gene Lian
cf25796b14
Bug 749551 - Alarm API (Idl and dummy Dom). r=mounir sr=jonas
2012-06-22 15:37:49 +08:00
Myk Melez
888baf60da
remove observer added by test to resolve test bustage caused by fix for bug 765063 (fa750527a43b)
2012-07-05 14:54:11 -07:00
Myk Melez
90f2a17174
bug 765063 - save installURL for later use; r=fabrice
...
--HG--
extra : rebase_source : 7360e295a4549d29d2667a0c8e38708959df7f40
2012-07-05 11:12:55 -07:00
Mounir Lamouri
76d382c04f
Bug 769571 - Unprefix Battery API. r=sicking sr=smaug
...
--HG--
rename : dom/battery/nsIDOMNavigatorBattery.idl => dom/battery/nsINavigatorBattery.idl
2012-07-05 12:05:09 +02:00
Mounir Lamouri
c84d60f166
Bug 769571 - Unprefix Vibrator API. r=jlebar sr=smaug
2012-07-05 12:04:45 +02:00
Gregor Wagner
f9a398b235
Bug 769245 - Contacts API: Add ContactEmail Type. r=sicking
2012-07-03 11:00:53 -07:00
Felipe Gomes
1744d44393
Bug 768276. Part 5 - Set allAppsLaunchable = true on API tests that skip native installation. r=ctalbert
2012-06-29 13:46:21 -07:00
Felipe Gomes
a54e4e432d
Bug 768276. Part 3 - Implement mozApps.getNotInstalled. r=jst
2012-06-29 13:46:21 -07:00
Bobby Holley
f8e97f21d8
Bug 754202 - Fix content->chrome postMessage mochitest. r=bz This isn't something we actually support, and were using enablePrivilege to do it before. When we switch this to SpecialPowers wrapping, the sender origin becomes a chrome URL (not very interesting) and the source window becomes null (which we do explicitly in nsGlobalWindow for chrome callers). So those tests stop being useful.
2012-06-28 23:47:55 +02:00
Doug Turner
cd239ebc3f
Bug 767894 - Device Storage - Move test from dom/tests/mochitest/devicestorage to dom/devicestorage. rs=bent
...
--HG--
rename : dom/tests/mochitest/devicestorage/Makefile.in => dom/devicestorage/test/Makefile.in
rename : dom/tests/mochitest/devicestorage/devicestorage_common.js => dom/devicestorage/test/devicestorage_common.js
rename : dom/tests/mochitest/devicestorage/test_basic.html => dom/devicestorage/test/test_basic.html
rename : dom/tests/mochitest/devicestorage/test_dotdot.html => dom/devicestorage/test/test_dotdot.html
rename : dom/tests/mochitest/devicestorage/test_enumerate.html => dom/devicestorage/test/test_enumerate.html
rename : dom/tests/mochitest/devicestorage/test_enumerateMultipleContinue.html => dom/devicestorage/test/test_enumerateMultipleContinue.html
rename : dom/tests/mochitest/devicestorage/test_enumerateNoParam.html => dom/devicestorage/test/test_enumerateNoParam.html
rename : dom/tests/mochitest/devicestorage/test_enumerateOptions.html => dom/devicestorage/test/test_enumerateOptions.html
rename : dom/tests/mochitest/devicestorage/test_lastModificationFilter.html => dom/devicestorage/test/test_lastModificationFilter.html
rename : dom/tests/mochitest/devicestorage/test_overwrite.html => dom/devicestorage/test/test_overwrite.html
rename : dom/tests/mochitest/devicestorage/test_sanity.html => dom/devicestorage/test/test_sanity.html
2012-06-27 13:47:36 -07:00
Ehsan Akhgari
a95b6edeea
Bug 722872 - Part 1: Add nsITransferable::Init(nsILoadContext*), enforce that it's called in debug builds, and add nsIDOMDocument* arguments to nsIClipboardHelper methods; r=roc
...
This patch does the following:
* It adds nsITransferable::Init(nsILoadContext*). The load context
might be null, which means that the transferable is non-private, but
if it's non-null, we extract the boolean value for the privacy mode
and store it in the transferable.
* It adds checks in debug builds to make sure that Init is always
called, in form of fatal assertions.
* It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which
represent the document that the string is coming from.
nsIClipboardHelper implementation internally gets the nsILoadContext
from that and passes it on to the transferable upon creation. The
reason that I did this was that nsIClipboardHelper is supposed to be a
high-level helper, and in most of its call sites, we have easy access
to a document object.
* It modifies all of the call sites of the above interfaces according to
this change.
* It adds a GetLoadContext helper to nsIDocument to help with changing
the call sites.
2012-04-16 22:14:01 -04:00
Ed Morley
ae8185a607
Backout c707e4f15fd4 (bug 767905), cad3e0609835 (bug 767894) for various devicestorage test failures
2012-06-26 16:21:37 +01:00
Doug Turner
0ae48cfd1f
Bug 767894 - Device Storage - move test from dom/tests/mochitest/devicestorage to dom/devicestorage. rs=bent
...
--HG--
rename : dom/tests/mochitest/devicestorage/Makefile.in => dom/devicestorage/test/Makefile.in
rename : dom/tests/mochitest/devicestorage/devicestorage_common.js => dom/devicestorage/test/devicestorage_common.js
rename : dom/tests/mochitest/devicestorage/test_basic.html => dom/devicestorage/test/test_basic.html
rename : dom/tests/mochitest/devicestorage/test_dotdot.html => dom/devicestorage/test/test_dotdot.html
rename : dom/tests/mochitest/devicestorage/test_enumerate.html => dom/devicestorage/test/test_enumerate.html
rename : dom/tests/mochitest/devicestorage/test_enumerateMultipleContinue.html => dom/devicestorage/test/test_enumerateMultipleContinue.html
rename : dom/tests/mochitest/devicestorage/test_enumerateNoParam.html => dom/devicestorage/test/test_enumerateNoParam.html
rename : dom/tests/mochitest/devicestorage/test_enumerateOptions.html => dom/devicestorage/test/test_enumerateOptions.html
rename : dom/tests/mochitest/devicestorage/test_lastModificationFilter.html => dom/devicestorage/test/test_lastModificationFilter.html
rename : dom/tests/mochitest/devicestorage/test_overwrite.html => dom/devicestorage/test/test_overwrite.html
rename : dom/tests/mochitest/devicestorage/test_sanity.html => dom/devicestorage/test/test_sanity.html
2012-06-26 05:51:24 -07:00
Olli Pettay
ae635e6ad9
Bug 766694 - Add a test to check existence of each interface in the window scope, r=bz
...
--HG--
extra : rebase_source : 02e03c441c2c4ed3cbd1ce2981c84cfb350c70a1
2012-06-23 15:42:32 +03:00
Kartikaya Gupta
8e1c5560cf
Bug 755971 - Switch to using the padding rect size for scrollWidth and scrollHeight, and update tests to continue passing. r=bz, gavin
2012-06-21 09:36:57 -04:00
Myk Melez
421ff64eae
bug 766382 - make mozApps mochitests stop modifying API call results; r=felipe
2012-06-20 09:53:30 -07:00
Peter Van der Beken
b02a1ce6f4
Fix for bug 762657 (Fix canvas tests and drop support for fake ImageData in putImageData to comply with spec). r=Ms2ger.
2012-05-25 16:27:18 +02:00
Ian Bicking
8e2d02b805
bug 739330 - call error handler with NOT_INSTALLED when page tries to uninstall webapp that is not installed; r=fabrice
...
--HG--
extra : rebase_source : 5ea5510c43d336a23245ad12b7cddbf8a438b164
2012-06-18 12:57:16 -07:00
Ian Bicking
233dc06ea3
bug 734294 - when installing an app the InstallTime is returning undefined; r=fabrice
...
--HG--
extra : rebase_source : 91e5a5d467826927f6c6df4c97ab5cecab73b26f
2012-06-18 12:49:35 -07:00
Bobby Holley
0a476db888
Bug 761982 - remove mozprefs.js. r=jmaher
2012-06-18 15:43:00 +02:00
Doug Turner
346de6afda
Bug 758273 - Device Storage - enumeration option to filter based on last modification date. r=smaug
2012-06-10 22:50:44 -07:00
L. David Baron
91859c5a28
Backout bug 754202 (all patches, rather than just patches 3-7).
2012-06-10 17:22:31 -07:00
Ryan VanderMeulen
b74e4a29db
Revert c39d36167b99 due to a horribly munged backout.
2012-06-10 19:44:50 -04:00
Ryan VanderMeulen
061d4c2616
Backout the bug 754202 backout due to orange.
2012-06-10 19:37:47 -04:00
Doug Turner
8934eee23b
Backed out changeset 401edab3831f - Bug 758273.
...
--HG--
extra : rebase_source : 8ce201cd3fe6a2d6405be2548927f65dab5cbb39
2012-06-08 21:33:16 -07:00
Doug Turner
24e6e84abb
Bug 758273 - Device Storage - enumeration option to filter based on last modification date. r=smaug
2012-06-08 20:15:04 -07:00
Ed Morley
22c1ed282d
Merge mozilla-central to mozilla-inbound
2012-06-07 15:56:37 +01:00
Justin Lebar
55a0e62d94
Bug 758297 - Move <iframe mozbrowser> code to dom/browser-element. r=mounir
...
--HG--
rename : dom/base/BrowserElementChild.js => dom/browser-element/BrowserElementChild.js
rename : dom/base/BrowserElementParent.js => dom/browser-element/BrowserElementParent.js
rename : dom/base/BrowserElementParent.manifest => dom/browser-element/BrowserElementParent.manifest
rename : dom/base/BrowserElementPromptService.jsm => dom/browser-element/BrowserElementPromptService.jsm
rename : dom/tests/mochitest/browser-frame/Makefile.in => dom/browser-element/mochitest/Makefile.in
rename : dom/tests/mochitest/browser-frame/browserFrameHelpers.js => dom/browser-element/mochitest/browserFrameHelpers.js
rename : dom/tests/mochitest/browser-frame/file_empty.html => dom/browser-element/mochitest/file_empty.html
rename : dom/tests/mochitest/browser-frame/file_focus.html => dom/browser-element/mochitest/file_focus.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame1.html => dom/browser-element/mochitest/test_browserFrame1.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame10.html => dom/browser-element/mochitest/test_browserFrame10.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame2.html => dom/browser-element/mochitest/test_browserFrame2.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame3.html => dom/browser-element/mochitest/test_browserFrame3.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame4.html => dom/browser-element/mochitest/test_browserFrame4.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame5.html => dom/browser-element/mochitest/test_browserFrame5.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame6.html => dom/browser-element/mochitest/test_browserFrame6.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame7.html => dom/browser-element/mochitest/test_browserFrame7.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame8.html => dom/browser-element/mochitest/test_browserFrame8.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame9.html => dom/browser-element/mochitest/test_browserFrame9.html
rename : dom/tests/mochitest/browser-frame/test_browserFrameAlert.html => dom/browser-element/mochitest/test_browserFrameAlert.html
rename : dom/tests/mochitest/browser-frame/test_browserFramePromptCheck.html => dom/browser-element/mochitest/test_browserFramePromptCheck.html
rename : dom/tests/mochitest/browser-frame/test_browserFramePromptConfirm.html => dom/browser-element/mochitest/test_browserFramePromptConfirm.html
rename : dom/tests/mochitest/browser-frame/test_browserFrame_keyEvents.html => dom/browser-element/mochitest/test_browserFrame_keyEvents.html
2012-06-07 10:49:48 -04:00
Justin Lebar
3fe9b5095a
Bug 741587 - Part 2: Tests for alert/prompt/confirm in <iframe mozbrowser>. r=smaug
...
--HG--
extra : rebase_source : 5c4e2666a27b48e882c256deeeefde137596a733
2012-06-07 10:43:23 -04:00
Bobby Holley
c4dfbb7e93
Bug 754202 - Fix content->chrome postMessage mochitest. r=bz
...
This isn't something we actually support, and were using enablePrivilege to do it before.
When we switch this to SpecialPowers wrapping, the sender origin becomes a chrome URL (not
very interesting) and the source window becomes null (which we do explicitly in
nsGlobalWindow for chrome callers). So those tests stop being useful.
2012-06-07 14:28:21 +02:00
Olli Pettay
0771efa747
Bug 762007 - mozIDOMApplication* interfaces shouldn't inherit builtinclass interfaces, r=fabrice
...
--HG--
extra : rebase_source : 8d5a71cde92635ee84ec022f3edddc19156f6bc8
2012-06-06 19:42:54 +03:00
Honza Bambas
9d0764b621
Bug 744719 - Change offline cache update to load files in parallel, r=michal.novotny
2012-06-04 16:12:23 +02:00
Mounir Lamouri
522e00ceb1
Bug 759017 - Fix test that wasn't correctly checking keyCode in the whitelist. r=jlebar
2012-05-31 16:39:35 +02:00
Dale Harvey
e185c14e2c
Bug 756844 - Change test strategy for screenshot API. r=jlebar
...
We originally made assumptions about the state of the painted
window after the mozafterpainted event, now we simple wait
until we receive a screenshot we are happy with (with max retries)
--HG--
extra : rebase_source : 82464dbcfbfc7af5d95a21d058ecc45a38cc5bf6
2012-05-30 22:15:12 -04:00
Gervase Markham
638c878b13
Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
...
--HG--
extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
2012-05-29 16:52:43 +01:00
Dale Harvey
64b325a680
Bug 759044 - Cleanup visibility message reciever on test completion. r=jlebar
2012-05-28 13:55:48 -04:00
Dale Harvey
5a01063b39
Bug 702880 - Add setVisible api to mozbrowser. r=jlebar
2012-05-27 08:39:04 -04:00
Bobby Holley
42c699d608
Bug 553102 - Fix open web apps. r=fabrice
2012-05-24 13:04:57 +02:00
Bobby Holley
484b503b36
Bug 553102 - Fix mock prompt service. r=ted
2012-05-24 13:04:57 +02:00
Dale Harvey
dff5ee477a
Bug 756844 - Fix randomorange in test_browserFrame9.html. r=jlebar
...
Previous test expected a screenshot taken after loadend event to
capture the updated content, which wasnt always true. New test only
tests that subsequent screenshots of content that we know has
been changed, will differ
2012-05-23 23:57:26 -04:00
Mounir Lamouri
9d17abe294
Bug 757486 - Allow browser frames to bubble some whitelisted key events. r=jlebar
...
--HG--
extra : rebase_source : 5d8e8c2a4899f37bd01f4eab69238f48b0a2ddeb
2012-05-23 16:15:31 +02:00
Justin Lebar
d6e5466d4e
Bug 754997 - For <iframe mozbrowser>, override window.{top,parent,frameElement} in C++. r=bz
...
--HG--
extra : rebase_source : 66d2ef018234eaa71e49d927eefdd3a8aa01bb41
2012-05-23 11:27:10 -04:00
Ed Morley
30c2b9852a
Backout baee7c540118 (bug 757486) for M3 orange
2012-05-23 10:16:32 +01:00
Mounir Lamouri
6147305354
Bug 757486 - Allow browser frames to bubble some whitelisted key events. r=jlebar
2012-05-23 01:43:37 +02:00
Doug Turner
f4e1e809f4
Bug 717103 - Implement Device Storage. r=sicking
2012-05-21 09:18:30 -07:00
Chris Pearce
d7bcaaea6b
Bug 753323 - Wait until actually in fullscreen before starting screenClientXPConst pointer lock test. r=orange-fix
2012-05-22 12:05:55 +12:00
Chris Pearce
1d378636cf
Bug 745047 - Cache window.screen{X,Y} before testing them, since they can change during a JS execution context... r=orange-fix
2012-05-22 10:01:41 +12:00
Chris Pearce
89a3c49662
Bug 745047 - Wait until actually in fullscreen before starting mozMovement pointer lock test. r=smaug
2012-05-22 08:43:35 +12:00
Ed Morley
7bdae23f76
Backout 027ed1748c81 (bug 740485) for M3 orange
2012-05-21 19:36:43 +01:00
Doug Turner
23116ffc7c
Bug 740485 - Implement Device Storage. r=sicking
2012-05-21 09:18:30 -07:00
Gervase Markham
87620f5676
Bug 716478 - update licence to MPL 2.
2012-05-21 12:12:37 +01:00
Dale Harvey
e0c87d4d6a
Bug 753595 - Add a getScreenshot call to mozbrowser. r=jlebar
2012-05-18 20:47:20 -04:00
Ms2ger
21bd7c0dc4
Bug 752319 - Use testharness.js for the cross-origin localStorage tests; r=mayhemer
2012-05-18 10:29:38 +02:00
Ms2ger
1108c8c1fe
No bug - Remove windows line endings from dom/tests/mochitest/localstorage/test_{keySync,storageConstructor}.html.
2012-05-18 10:29:38 +02:00
Neil Deakin
af83f58ade
Bug 665677, remove frequently failing test as what it is testing is already done within the main focus test, f=masayuki
2012-05-16 19:55:08 -04:00
Justin Lebar
30fbdf20b2
Bug 755320 - Make <iframe remote=true> work (the remote part should be ignored; it's just a normal iframe). r=smaug
2012-05-16 01:28:57 -04:00
Justin Lebar
505d34a3ac
Bug 755001 - Allow <iframe mozbrowser> to be explicitly in- or out-of-process. r=smaug
2012-05-16 01:28:56 -04:00
Ed Morley
09132a48b2
Backout f177646e2aa2 (bug 755320), 1bae327de007 (bug 755001) for test_browserFrame7.html M3 failures
2012-05-15 18:38:50 +01:00
Justin Lebar
b9c6be98de
Bug 755320 - Make <iframe remote=true> work (the remote part should be ignored; it's just a normal iframe). r=smaug
2012-05-15 12:36:43 -04:00
Felipe Gomes
bff268a09f
Bug 741549. follow-up: remove unnecessary UniversalXPConnect usage left over on this test. r=me
2012-05-10 01:02:24 -07:00
Robert O'Callahan
51d7a0278c
Bug 681192. Part 15: Fix test now that scrollbox scrollWidth/Heights isn't special. r=matspal
...
--HG--
extra : rebase_source : d77548c8b7b2c62a66070a4cd8414cdf1f7819e6
2012-05-10 17:24:20 +12:00
Dale Harvey
37815321a4
Bug 719461: Added iconchange event to mozbrowser contained frames. r=jlebar
2012-05-09 09:34:16 -07:00
Chris Pearce
1f8c71c858
Bug 746885 part 3 - Change pointer lock tests to always run on a domain with fullscreen-approved permissions. r=smaug
2012-05-09 09:48:27 +12:00
Chris Pearce
196b7c195c
Bug 716107 part 7 - Update fullscreen keys tests. r=smaug
2012-05-09 09:47:19 +12:00
Chris Pearce
69fad75f3b
Bug 716107 part 4 - Dispatch MozEnteredDomFullscreen to document which requests fullscreen. r=smaug
2012-05-09 09:47:19 +12:00
Justin Lebar
cdc2cdd948
Bug 749018 - Make OOP <iframe mozbrowser> pass current browser frame tests. r=smaug,cjones
...
--HG--
extra : rebase_source : f15018bf2c9427a0d6e8d44da348d8d7d1693219
2012-05-08 09:20:35 -07:00
David Clarke
55a3bd622b
Bug 741549. Implement mochitests for the navigator.mozApps API. r=felipe
2012-04-24 20:05:01 -07:00
Gijs Kruitbosch
d296271004
Bug 749894 - fix intermittent test_performance_now failures, r=bz
...
--HG--
extra : rebase_source : 0d5696d909848a907fa02d390189e62366797725
2012-05-07 17:44:26 +02:00
Matt Brubeck
ed415941c1
Bug 750051 - Disable window.find in Fennec because it breaks and/or crashes [r=jst]
2012-05-03 09:15:38 -07:00
Peter Van der Beken
1780bb4050
Fix for bug 741267 (UserScript's XMLHttpRequest is undefined in 20120401 nightly).
...
Pass two objects when creating a DOM interface object, the global used to cache
the DOM interface objects and a receiver object on which the named property is
that points to the DOM interface object.
--HG--
extra : rebase_source : b462393e7376fdb68f3b279ccd08b3ab25ac154a
2012-04-23 16:10:56 +02:00
Gijs Kruitbosch
bdf19a4af3
Bug 539095 - Expose high-res timers to web content (performance.now()). r=bz, sr=smaug
...
--HG--
extra : transplant_source : o%9F%061%D4%B5%7D%5C%FB%95%5D%16%27%DEKU%EC%21%3AR
2012-04-27 09:22:06 +02:00
Masatoshi Kimura
f17f15dabb
Bug 745498 - Add testcases for DOM4 exception types. r=sicking
2012-04-26 09:42:26 -07:00
Justin Lebar
736f94b4ef
Bug 714861 - Run <iframe mozbrowser> in a separate process (disabled by default). r=cjones,bz,tn,smaug
2012-04-25 12:35:58 -04:00
Ed Morley
2666b058b1
Backout 949cb1977ef9 (bug 714861) for build bustage
2012-04-25 16:51:31 +01:00
Justin Lebar
e59845cd83
Bug 714861 - Run <iframe mozbrowser> in a separate process (disabled by default). r=cjones,bz,tn,smaug
2012-04-25 11:29:28 -04:00
Honza Bambas
e2394df0ef
Bug 746272 - Add missing key caching in localStorage.removeItem, r=bz
2012-04-25 14:50:21 +02:00
Bobby Holley
76ab3b4b7e
Bug 743615 - Tests. r=bent, a=blassey
2012-04-24 12:58:18 +02:00
Boris Zbarsky
d1a2ce74b8
Bug 740811. Make SVGElement.prototype be Element.prototype again. r=peterv, a=akeybl
2012-04-20 21:44:35 -04:00
Ms2ger
7ff2b26082
Bug 742938 - Move W3C-imported testharness.js tests to make the path shorter; r=jhammel
...
--HG--
rename : dom/tests/mochitest/w3c/Makefile.in => dom/imported-tests/Makefile.in
rename : dom/tests/mochitest/w3c/README => dom/imported-tests/README
rename : dom/tests/mochitest/w3c/WebIDLParser.js => dom/imported-tests/WebIDLParser.js
rename : dom/tests/mochitest/w3c/failures.txt => dom/imported-tests/failures.txt
rename : dom/tests/mochitest/w3c/html.json => dom/imported-tests/html.json
rename : dom/tests/mochitest/w3c/html.mk => dom/imported-tests/html.mk
rename : dom/tests/mochitest/w3c/html.txt => dom/imported-tests/html.txt
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/Makefile.in => dom/imported-tests/html/tests/submission/Mozilla/Makefile.in
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/nested-document-write-external.js => dom/imported-tests/html/tests/submission/Mozilla/nested-document-write-external.js
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_body-onload.html => dom/imported-tests/html/tests/submission/Mozilla/test_body-onload.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_pageload-image.html => dom/imported-tests/html/tests/submission/Mozilla/test_pageload-image.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_pageload-video.html => dom/imported-tests/html/tests/submission/Mozilla/test_pageload-video.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_script-for-onload.html => dom/imported-tests/html/tests/submission/Mozilla/test_script-for-onload.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-parse-error.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-parse-error.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-runtime-error-throw.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-runtime-error-throw.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-runtime-error.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-runtime-error.html
rename : dom/tests/mochitest/w3c/idlharness.js => dom/imported-tests/idlharness.js
rename : dom/tests/mochitest/w3c/importTestsuite.py => dom/imported-tests/importTestsuite.py
rename : dom/tests/mochitest/w3c/parseManifest.py => dom/imported-tests/parseManifest.py
rename : dom/tests/mochitest/w3c/testharness.css => dom/imported-tests/testharness.css
rename : dom/tests/mochitest/w3c/testharness.js => dom/imported-tests/testharness.js
rename : dom/tests/mochitest/w3c/testharnessreport.js.in => dom/imported-tests/testharnessreport.js.in
rename : dom/tests/mochitest/w3c/updateTestharness.py => dom/imported-tests/updateTestharness.py
rename : dom/tests/mochitest/w3c/webapps.json => dom/imported-tests/webapps.json
rename : dom/tests/mochitest/w3c/webapps.mk => dom/imported-tests/webapps.mk
rename : dom/tests/mochitest/w3c/webapps.txt => dom/imported-tests/webapps.txt
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/Makefile.in => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/Makefile.in
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-01.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-01.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-02.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-02.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-03.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-03.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-04.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-04.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-05.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-05.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-06.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-06.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-07.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-07.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-08.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-08.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-09.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-09.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-10.xml => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-10.xml
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-11.xml => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-11.xml
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-12.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-12.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-13.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-13.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-14.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-14.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-15.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-15.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-16.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-16.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-17.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-17.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-18.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-18.htm
rename : dom/tests/mochitest/w3c/writeReporter.py => dom/imported-tests/writeReporter.py
2012-04-14 15:05:48 +02:00
Ms2ger
547f70d3fc
No bug - Fix a few issues in importTestsuite.py and update generated Makefiles; r=me
2012-04-14 15:05:33 +02:00
Ms2ger
b8ae2456b2
Backing out bf0a78471e5e:dc7022e2d807 for inexplicable windows crashes.
2012-04-14 17:52:34 +02:00
Ms2ger
ed32ddbeac
Bug 742938 - Move W3C-imported testharness.js tests to make the path shorter; r=jhammel
...
--HG--
rename : dom/tests/mochitest/w3c/Makefile.in => dom/imported-tests/Makefile.in
rename : dom/tests/mochitest/w3c/README => dom/imported-tests/README
rename : dom/tests/mochitest/w3c/WebIDLParser.js => dom/imported-tests/WebIDLParser.js
rename : dom/tests/mochitest/w3c/failures.txt => dom/imported-tests/failures.txt
rename : dom/tests/mochitest/w3c/html.json => dom/imported-tests/html.json
rename : dom/tests/mochitest/w3c/html.mk => dom/imported-tests/html.mk
rename : dom/tests/mochitest/w3c/html.txt => dom/imported-tests/html.txt
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/Makefile.in => dom/imported-tests/html/tests/submission/Mozilla/Makefile.in
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/nested-document-write-external.js => dom/imported-tests/html/tests/submission/Mozilla/nested-document-write-external.js
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_body-onload.html => dom/imported-tests/html/tests/submission/Mozilla/test_body-onload.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_pageload-image.html => dom/imported-tests/html/tests/submission/Mozilla/test_pageload-image.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_pageload-video.html => dom/imported-tests/html/tests/submission/Mozilla/test_pageload-video.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_script-for-onload.html => dom/imported-tests/html/tests/submission/Mozilla/test_script-for-onload.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-parse-error.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-parse-error.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-runtime-error-throw.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-runtime-error-throw.html
rename : dom/tests/mochitest/w3c/html/tests/submission/Mozilla/test_window-onerror-runtime-error.html => dom/imported-tests/html/tests/submission/Mozilla/test_window-onerror-runtime-error.html
rename : dom/tests/mochitest/w3c/idlharness.js => dom/imported-tests/idlharness.js
rename : dom/tests/mochitest/w3c/importTestsuite.py => dom/imported-tests/importTestsuite.py
rename : dom/tests/mochitest/w3c/parseManifest.py => dom/imported-tests/parseManifest.py
rename : dom/tests/mochitest/w3c/testharness.css => dom/imported-tests/testharness.css
rename : dom/tests/mochitest/w3c/testharness.js => dom/imported-tests/testharness.js
rename : dom/tests/mochitest/w3c/testharnessreport.js.in => dom/imported-tests/testharnessreport.js.in
rename : dom/tests/mochitest/w3c/updateTestharness.py => dom/imported-tests/updateTestharness.py
rename : dom/tests/mochitest/w3c/webapps.json => dom/imported-tests/webapps.json
rename : dom/tests/mochitest/w3c/webapps.mk => dom/imported-tests/webapps.mk
rename : dom/tests/mochitest/w3c/webapps.txt => dom/imported-tests/webapps.txt
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/Makefile.in => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/Makefile.in
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-01.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-01.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-02.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-02.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-03.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-03.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-04.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-04.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-05.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-05.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-06.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-06.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-07.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-07.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-08.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-08.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-09.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-09.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-10.xml => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-10.xml
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-11.xml => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-11.xml
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-12.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-12.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-13.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-13.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-14.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-14.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-15.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-15.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-16.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-16.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-17.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-17.htm
rename : dom/tests/mochitest/w3c/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-18.htm => dom/imported-tests/webapps/DOMCore/tests/submissions/Opera/test_getElementsByClassName-18.htm
rename : dom/tests/mochitest/w3c/writeReporter.py => dom/imported-tests/writeReporter.py
2012-04-14 15:05:48 +02:00
Ms2ger
0b11c09838
No bug - Fix a few issues in importTestsuite.py and update generated Makefiles; r=me
2012-04-14 15:05:33 +02:00
Matt Brubeck
a9e815d8b3
Bug 739038 (followup) - tests for dom.disable_window_showModalDialog and disable_window_print [r=jst]
2012-04-13 15:27:39 -07:00
Masatoshi Kimura
f09712023c
Bug 743049 - Part 2: Use the new API from NS_ScriptErrorReporter to get an error type name. r=jst
2012-04-11 17:55:22 -04:00
David Humphrey (:humph)
5f9892f336
Bug 633602 - Implement Pointer Lock (Mouse Lock) API. r=roc,smaug
2012-04-11 17:55:21 -04:00
Gabor Krizsanits
74922f0040
Bug 733035 - postMessage support for sandboxes. r=khuey
2012-04-05 18:33:20 -04:00
Boris Zbarsky
a555a8edf3
Bug 742222. Make sure to JS_WrapValue values being returned for callback types and 'any' types. r=peterv
2012-04-05 13:14:54 -04:00
Justin Lebar
e25a776ebd
Bug 742448 - Don't return xray-waived objects in BrowserElementAPI, and don't use the parent window's content-overridable top property for implementing window.top. r=bholley
...
--HG--
extra : rebase_source : 0c81c1f605aaf73f01b47077be11345ee64955e1
2012-04-04 20:32:39 -04:00
Ms2ger
d5ec912ad4
Bug 532062 - localStorage/sessionStorage should return undefined (not null) for undefined keys through property access; r=mayhemer
2012-04-03 09:25:39 +02:00
Ms2ger
baf72711e7
Bug 740771 - Stringify null for Storage.getItem/setItem/removeItem; r=mayhemer
2012-04-03 09:25:39 +02:00
Ms2ger
c7002d2259
Bug 737122 - Attr nodes shouldn't have children; r=sicking
2012-04-03 09:25:39 +02:00
Serge Gautherie
325c5f79cb
Bug 739927. (Av2) dom-level*-*/DOMTestCase.js: Fix SimpleTest._logResult() override + testFails() + markTodos(), Fake a missing warn() function in checkInitialization(), Add missing early returns to assertSize() and assertURIEquals(). r=jmaher.
2012-04-02 17:11:19 +02:00
Tim Taubert
4d09e65fb8
merge m-c to fx-team
2012-04-01 18:52:12 +02:00
Kyle Huey
45ec706558
Merge to pick up an orange fix from m-c.
2012-03-31 09:14:19 -07:00
Kyle Huey
ade7c58314
No bug: Followups to my previous two commits.
2012-03-31 07:54:12 -07:00
Ed Morley
c7a3740e33
Merge mozilla-central to mozilla-inbound
2012-03-31 15:28:55 +01:00
Kyle Huey
274e954249
Bug 740626: Disable failing tests.
2012-03-31 07:26:57 -07:00
Peter Van der Beken
09128a75d3
Fix for bug 740069 (Generate JS bindings in C++ with a python script for DOM objects on the main thread and in workers. Infrastructure and new bindings for XMLHttpRequest). Patch by bent/bz/bholley/jst/khuey/peterv, r=bent/bz/bholley/jlebar/khuey/peterv/sicking/smaug.
...
--HG--
rename : js/xpconnect/tests/mochitest/test_bug462428.html => dom/bindings/test/test_lookupGetter.html
2012-03-30 21:42:20 -07:00
Tim Taubert
567e2a49fb
Bug 727446 - follow up, test fix #2 ; r=bustage
2012-03-30 22:40:00 +02:00
Tim Taubert
fa7e058bee
Bug 727446 - follow up, test fix r=bustage
2012-03-30 22:37:35 +02:00
Tim Taubert
35c66981b6
Bug 727446 - Let the window owning a storage dispatch an event when the storage changes; r=smaug
2012-03-30 19:31:16 +02:00
Marco Bonardo
d3b8a6debe
Merge central to inbound
2012-03-30 12:27:55 +02:00
Ms2ger
a7ad2e10a7
Bug 738647 - DOMStorageImpl::GetKey shouldn't throw; r=honzab
2012-03-29 23:09:09 +02:00
Ms2ger
c37bb73658
Bug 647323 - Part e: Import Opera's getElementsByClassName tests from the WebApps WG repository; r=jhammel
2012-03-29 23:09:02 +02:00
Ms2ger
5d6fdd311e
Bug 647323 - Part d: Import tests Mozilla contributed to the HTML WG test suite; r=jhammel
2012-03-29 23:09:00 +02:00
Ms2ger
821597c580
Bug 647323 - Part c: Implement test importing code; r=jhammel
2012-03-29 23:08:58 +02:00
Ms2ger
9892fde4a2
Bug 647323 - Part b: Implement test harness reporting code and import testharness code from the upstream repository; r=jhammel+ted
2012-03-29 23:08:43 +02:00
Ms2ger
f9a594844b
Bug 647323 - Part a: Document the setup; r=jhammel
2012-03-29 23:08:43 +02:00
Peter Van der Beken
702fa57682
Fix for bug 740397 (Make tests that try to get XHR.channel use SpecialPowers). r=bholley.
...
--HG--
extra : rebase_source : 0bd78094debfea9d179f17396626c3802a6b5a21
2012-03-29 11:15:09 -07:00
Phil Ringnalda
b4da60b42d
Back out 0cb85ff0f764 (bug 738568), 9949bb092303 (bug 730209), 095fd525afa7 (bug 729924), dcf8929a8115 (bug 633602) because of widely scattered and unclear bustage on a CLOSED TREE
2012-03-28 22:37:46 -07:00
David Humphrey
03dc4eeeee
Bug 633602 - Implement Pointer Lock (Mouse Lock) API. r=roc, smaug
2012-03-28 21:00:14 -04:00
Ed Morley
c2463d6658
Merge mozilla-central to mozilla-inbound
2012-03-28 23:23:32 +01:00
Ed Morley
3e3ac1e8fc
Backout 273173a592dc (bug 483992) for causing bug 739927
2012-03-28 22:52:17 +01:00
Phil Ringnalda
8d8cf286e2
Merge m-c to m-i
2012-03-27 21:21:11 -07:00
Justin Lebar
02941cac89
Back out changesets 6a2c57fa8edf, 34526f45d863 (bug 737307) due to web-facing regressions (e.g. bug 739478). r=bz
...
--HG--
extra : rebase_source : 4b595ee4ef7ab60a1d831bf50f1c973161e3187c
2012-03-26 17:10:07 -07:00
Justin Lebar
9e6dbca1d3
Bug 736688 - Part 3: Make browser frame tests run faster by loading empty pages instead of example.com/example.org (which is the huge, root mochitest file). r=smaug
...
--HG--
extra : rebase_source : fcb9fbaaa45fc92098c66a20826fe3bb7f15b62c
2012-03-28 11:36:03 -07:00
Justin Lebar
fb21a54315
Bug 736688 - Part 2: Move browser frame tests to their own directory. r=smaug
...
--HG--
extra : rebase_source : b8c03a5cc74b528fce8b4bb7ff77f9a25ab85800
2012-03-28 11:36:03 -07:00
Justin Lebar
4c2163b0ec
Bug 736688 - Part 1: Fix up browser frame tests. r=smaug
...
--HG--
extra : rebase_source : 393c45bdb8d1eaa55be46dc5a6428b20d44cb013
2012-03-28 11:36:01 -07:00
Serge Gautherie
f320f33a7b
Bug 483992. (Av1) dom-level*-*/DOMTestCase.js: Remove sayrer's override of SimpleTest._logResult(). r=rcampbell.
2012-03-27 22:13:25 +02:00
Matt Brubeck
d6bfad0407
Merge mozilla-central and mozilla-inbound
2012-03-23 16:06:54 -07:00
Bobby Holley
2672787670
Bug 733984 - Explicitly disallow shadowing on location wrappers. r=mrbkap
...
This was taken care of in other ways before, but we need to be more explicit about it now that we're doing more Xray stuff with Location wrappers.
2012-03-23 15:58:18 -07:00
Dão Gottwald
a0c99babc6
merge backout
2012-03-23 16:58:48 +01:00
Dão Gottwald
370316e0da
Backed out changeset bf13c2253055
2012-03-23 16:58:27 +01:00
Bobby Holley
31beccabec
Bug 667388 - Tests. r=mrbkap
2012-03-23 15:00:22 -07:00
Paul O’Shannessy
2e876cdd8f
Bug 714911 - Stop persisting sizemode=fullscreen [r=enn]
...
--HG--
extra : rebase_source : d94bb978f3d35c90659fca78df83d9bbca1795a6
2012-03-20 16:21:14 -07:00
Aryeh Gregor
94d5ff735b
Bug 735805 part 1 - Fix DOM and layout mochitests that run no tests; r=bz
2012-03-16 16:07:09 -04:00
Justin Lebar
5732e6baa8
Bug 737307 - Part 1: Fix scriptaculous test.
2012-03-21 09:53:40 -04:00
Mounir Lamouri
9b6e615f47
Merging mozilla-inbound into mozilla-central.
2012-03-21 11:29:28 +01:00
Serge Gautherie
ef919fea29
Bug 483992. (Bv1) dom-level*-*/*: Work around tests that report no SimpleTest checks. r=bzbarsky.
2012-03-21 05:30:18 +01:00
Masayuki Nakano
5f93695680
Bug 728103 part.2 Fix new test failures r=smaug
2012-03-16 15:29:15 +09:00
Ms2ger
4d950a4670
Bug 649599 - Make getAttributeNS return null for absent attributes; r=peterv
2012-03-11 09:48:16 +01:00
Bobby Holley
3e075ab3e5
Bug 729589 - Fix frameElement wrapping test. r=Ms2ger
2012-03-08 12:55:57 -08:00
Justin Lebar
3720ec0244
Bug 729940 - Part 0a: Fix test error messages in localstorage/sessionstorage tests. r=honzab
2012-03-04 15:57:35 -05:00
Justin Lebar
2449f55f11
Back out bug 729940 (a108aee:d75775d) due to 32-bit red.
2012-03-04 14:20:34 -05:00
Justin Lebar
d9f6936c11
Bug 729940 - Part 0a: Fix test error messages in localstorage/sessionstorage tests. r=honzab
2012-03-04 13:49:41 -05:00
Justin Lebar
3e68e04f09
Bug 725796 - Make window.{top,parent,frameElement} respect <iframe mozbrowser>. r=bz
2012-03-04 11:02:00 -05:00
Matheus Kerschbaum
d2337ba1de
Bug 687579 part 2: Nuke globalStorage tests. r=jst
2011-10-09 22:15:00 -04:00
Matheus Kerschbaum
51254c73d0
Bug 687579 part 1: Remove globalStorage implementation. r=jst
...
Bug 687579 part 1: Remove globalStorage implementation. r=jst
2011-10-09 22:14:00 -04:00
Justin Lebar
0e2b8d1355
Bug 729940 - Part 0: Fix {local,session}Storage tests which rely on hashtable iteration order. r=honzab
2012-03-02 18:43:50 -05:00
Matt Brubeck
2609178889
Merge last green changeset from inbound to mozilla-central
2012-02-29 10:47:38 -08:00
Serge Gautherie
287a977acc
Bug 725015. (Av3) Add missing 'return', Set needed preference, Make todo() message more explicit. r=mounir.
2012-02-28 20:21:27 +01:00
Peter Van der Beken
859c2636bb
Fix for bug 691707 (Enumerating new proxy-based DOM bindings should enumerate the prototype too). r=mrbkap.
...
--HG--
extra : rebase_source : 788c2b3f9666ca654fab67047f6309937360f725
2012-02-07 20:55:37 +01:00
Marco Bonardo
0583b874bd
Backout 92c25caf3990 (bug 691707) for m-oth failures
2012-02-24 20:05:44 +01:00
Peter Van der Beken
3e4dff7ac7
Fix for bug 691707 (Enumerating new proxy-based DOM bindings should enumerate the prototype too). r=mrbkap.
...
--HG--
extra : rebase_source : 2877f225f60750d27005fccc0225e5c0482fb441
2012-02-07 20:55:37 +01:00
Neil Deakin
c20b50f24e
Bug 653230, add panels with focusable elements into the document tab navigation order, r=smaug
2012-02-23 16:02:33 -05:00
Honza Bambas
422a01729e
Bug 495337 - Make sessionStorage use principals instead of string domains, r=bz+bclary
2012-02-23 18:41:25 +01:00
Masatoshi Kimura
d99288b6cc
Bug 720208 - Implement DOM4 DOMException types and codes. r=smaug,ms2ger
2012-02-23 01:34:14 +01:00
Peter Van der Beken
98a0ede326
Fix for bug 637099 (Remove JS_ClearScope calls on windows). r=mrbkap.
...
--HG--
extra : rebase_source : 8bdadc72a0b28c78e21758fab8f1035ee1dd9f3d
2011-03-15 12:06:39 +01:00
Neil Deakin
a104105bd5
Bug 670317, add a focus manager flag to restrict tab navigation to the same frame, r=smaug
2012-02-13 14:24:28 -05:00
Saint Wesonga
5f0154ca20
Bug 394769. Remove the additional lateness argument for timeouts and intervals. r=jst
2012-02-07 15:28:08 -05:00
Jason Orendorff
17cd06a094
Bug 699565 - Part 4 - for-of loops on array-like DOM object. r=bz.
2012-02-07 12:57:17 -06:00
Gavin Sharp
93f574f547
Bug 723808: don't allow loads in type=content docshells to inherit the system principal, r=bz
...
--HG--
extra : transplant_source : %E6%25%A7%C1.%DA%02%CC%BF%DA%ED%BEZ%E8%FB%CD%28%0A%FE8
2012-01-30 18:29:44 -08:00
Ed Morley
14dbcc2bc2
Backout 0e6b1dfaa99c (bug 720208) for M1 orange
2012-02-01 12:58:07 +00:00
Masatoshi Kimura
7d692e41fd
Bug 720208 - Implement DOM4 DOMException types and codes. r=ms2ger,smaug
2012-02-01 11:36:42 +01:00
Felipe Gomes
913d59cbcb
Bug 714276. NodesFromRect should be a chrome-only API. r=smaug
...
--HG--
rename : dom/tests/mochitest/general/489127.html => dom/tests/mochitest/chrome/489127.html
rename : dom/tests/mochitest/general/test_nodesFromRect.html => dom/tests/mochitest/chrome/test_nodesFromRect.html
2012-01-27 16:54:03 -08:00
Justin Lebar
eff9052a37
Bug 719459 - Add onmozbrowsertitlechange event. r=smaug
...
--HG--
extra : rebase_source : b5e8ee64c85e0090a38a849bf077a68055ff56b9
2012-01-26 18:03:22 -05:00
Blake Kaplan
a74425472f
Bug 664737 - Make GetNext use a belt as well as its braces. r=bzbarsky
...
--HG--
extra : rebase_source : 46d034b32d4bcff1e5e4c82430091b9180c741fa
2012-01-26 12:54:23 +01:00
Josh Matthews
1f8fcec1f3
Bug 717243 - Handle multiple geolocation callbacks that can occur before a clearWatch call. r=dougt
2012-01-25 02:58:43 -05:00
Matt Woodrow
3ca05ac15f
Bug 718334 - Fix some tests to make them work with Skia. r=roc
2012-01-23 14:08:17 +13:00
Justin Lebar
e6de49c6d0
Bug 720157 - Don't crash when OnLocationChange sends a null URI. r=smaug
2012-01-22 15:46:55 -05:00
Justin Lebar
0726882a1a
Bug 720069 - Fix intermittent oranges in test_browserFrame{1,2,3}.html. r=philor
2012-01-21 01:44:19 -05:00
Phil Ringnalda
4dc0ee3ba9
Back out ca4e2ab3717c (bug 720069) because I clearly didn't even think about it, much less test it
2012-01-20 21:51:41 -08:00
Phil Ringnalda
ca4b8800fa
Bug 720069 - define the script that the iframe onload calls before the iframe, to avoid orange when iframeLoad is not defined, r=jlebar
...
--HG--
extra : rebase_source : 9d73255bdca519fe7459c646a84dd37a9f2b519e
2012-01-20 20:48:04 -08:00
Geoff Lankow
3735d96789
Backed out changeset 2059cef905c4 (bug 719841)
2012-01-21 11:26:35 +13:00
Bobby Holley
f531f67ad9
Bug 719841 - Tests. r=jorendorff
2012-01-20 13:32:44 -08:00
Justin Lebar
235e524f0e
Bug 710231 - Part 3: Add mozbrowserloadstart, mozbrowserloadend, mozbrowserlocationchange events to <iframe mozbrowser>. r=smaug
...
--HG--
extra : rebase_source : 01d82c02f56afd6aebf94443f223bc537536cc57
2012-01-20 12:02:48 -05:00
Justin Lebar
ff743fa577
Bug 710231 - Part 1: Back out bug 708176 part 2 (rev 1bdcd84ae727). r=smaug
...
--HG--
extra : rebase_source : 1c5768b85524a2c7ad63901e7d1f7acdbc075dcb
2012-01-20 12:02:28 -05:00
Savita TS
d3614f2082
Bug 715555 - Fix "unusued" spelling. r=gavin
2012-01-19 15:54:35 +01:00
Matt Woodrow
4749771972
Backout 0190782907ea because of failed tests
2012-01-19 19:37:02 +13:00
Matt Woodrow
4499e2be71
Bug 718334 - Fix some tests to make them work with Skia. r=roc
2012-01-19 17:48:35 +13:00
Ehsan Akhgari
f91de14389
Some debug information for bug 717243, r=me
2012-01-11 14:14:05 -05:00
Justin Lebar
78570190e0
Bug 717019 - Attempt to fix intermittent timeout of test_getContentState.html by switching from http://example.net (which is a live domain) to http://example.org (which is faked by mochitest). r=me
2012-01-10 19:23:31 -05:00
Justin Lebar
e79f17be95
Bug 708176 - Part 2: Add {i,}frame.queryInnerState(), which allows privileged pages to peer into an iframe's state. r=smaug
...
--HG--
extra : rebase_source : dfd89eb7d451bac9ae4e4eb05d090c767f42ab8e
2012-01-10 12:57:40 -05:00
Josh Matthews
18ebb800f7
Bug 716127 - Test for overlapping geolocation provider shutdown and unfulfilled request. r=dougt
2012-01-09 15:27:43 -05:00
Bobby Holley
f9cb714b69
Bug 713747 - Fix funky tests. r=bz
...
The conversion of checks for UniversalBrowserWrite to UniversalXPConnect caused these test fail, because they acquire UniversalXPConnect and actually doesn't want the results. In particular, they pass the security check in nsWindowWatcher::CalculateChromeFlags, which causes them to fail.
The first test doesn't actually need UniversalXPConnect, so we can remove it for free. The second one needs it, so we add some SpecialPowers goop to make it possible. It's not ideal, but it can go away when the wrapper in bug 702353 lands.
2011-12-30 09:35:39 -08:00
Bobby Holley
4b6add2c77
Bug 713747 - Use UniversalXPConnect and UniversalXPConnect only in test coverage. r=bz
2011-12-30 09:35:38 -08:00
Robert O'Callahan
d961c63703
Bug 591718. Make getClientRects/getBoundingClientRect take transforms into account, and not treat SVG <foreignObject> as establishing a new viewport. r=mats
2011-12-28 16:26:46 +13:00
Ehsan Akhgari
d824b10c2e
Bug 686003 - The test for bug 507902 navigates away from the page while it's in progress; r=dougt
...
--HG--
rename : dom/tests/mochitest/orientation/test_bug507902.html => dom/tests/mochitest/orientation/bug507902-frame.html
2011-12-28 17:52:35 -05:00
Blake Kaplan
ea4e716244
Bug 707749 - For document.write move the navigator forward to the new inner window. r=jst
...
--HG--
extra : rebase_source : ab7684c31094af6f11ff4101999f51fca1b35179
2011-12-28 14:39:55 +01:00
Phil Ringnalda
90f2a086a4
Back out dc7c7734ec7c, f793f9cfa72c, 10ea92a6a850 (bug 591718) for Android b-c orange in mobile/chrome/tests/browser_scrollbar.js
2011-12-27 20:34:08 -08:00
Robert O'Callahan
2bc49734cd
Bug 591718. Make getClientRects/getBoundingClientRect take transforms into account, and not treat SVG <foreignObject> as establishing a new viewport. r=mats
2011-12-28 16:26:46 +13:00
Chris Pearce
1511fb7d91
Bug 706672 - Revoke DOM full-screen when windowed plugin focused on non-MacOSX systems, and deny requests for full-screen from non-focused-tab documents. r=smaug
2011-12-16 10:42:36 +13:00
Ed Morley
8e0d79be44
Backout 80831e4a10de (bug 706672) for build failures on a CLOSED TREE
2011-12-15 22:09:55 +00:00
Chris Pearce
17d1a329d9
Bug 706672 - Revoke DOM full-screen when windowed plugin focused on non-MacOSX systems, and deny requests for full-screen from non-focused-tab documents. r=smaug
2011-12-16 10:42:36 +13:00
Justin Lebar
84241e428f
Bug 679966, part 2: Add mozVibrator() for "playing" a vibration pattern. r=bz
2011-11-10 16:26:36 -05:00
Phil Ringnalda
a52645da48
Bug 656943 - Disable test_offlineMode.html until someone cares enough to look at why it suddenly became flaky after 2.5 years, r=hsivonen
2011-12-04 22:25:54 -08:00
Geoff Lankow
2a4388fd47
Bug 668710 - Move mockObjects.js in with the rest of SimpleTest; r=dao
...
--HG--
rename : toolkit/content/tests/browser/common/mockObjects.js => testing/mochitest/tests/SimpleTest/MockObjects.js
2011-08-05 23:55:49 +12:00
Henri Sivonen
3e51b8fc49
Bug 92264 - Implement outerHTML. Part of the patch by Ms2ger. r=smaug.
2011-11-10 14:02:22 +02:00
Henri Sivonen
59ec018765
Back out changeset 0fb81504b0aa due to Windows build breaking.
2011-11-10 14:49:54 +02:00
Henri Sivonen
00241c62cd
Bug 92264 - Implement outerHTML. Part of the patch by Ms2ger. r=smaug.
2011-11-10 14:02:22 +02:00
Ed Morley
7bc582f20f
Backout 4997c6f8b24d (bug 616542) for causing locally run mochitest-browser-chrome test runs to fail
2011-11-05 18:35:59 +00:00
Rob Campbell
92c7bd7f02
merge m-c to fx-team
2011-11-05 10:11:34 -03:00
Rafael Ávila de Espíndola
7dc8a30f17
Bug 697989 - don't use domstorage-flush-timer test_bug624047.html. r=mak77.
...
Use a new domstorage-flush-force message for testing calling
FlushAndDeleteTemporaryTables with a 'true' argument. We want to add more
work to profile-before-change and that would interfere with the testing
in dom/tests/mochitest/localstorage/test_bug624047.html.
Also move the NS_DOMSTORAGE_FLUSH_TIMER_OBSERVER define to the .cpp file
since that is the only place it is used and rename it to end in _TOPIC.
2011-11-04 18:27:59 -04:00
Rail Aliiev
8a56fd9db2
Bug 616542 - Shorten file path length of mochitest; r=ted
2011-11-04 21:13:42 +00:00
Boris Zbarsky
7c9b5321a5
Bug 698551. When forwarding gets to the prototype in nodelists, make sure to use the right |this|. r=waldo,peterv
2011-11-04 12:18:38 -04:00
Chris Pearce
0aa08286eb
Bug 696918 - Restrict key input in DOM full-screen mode to explicit whitelist. r=smaug
2011-11-03 08:17:32 +13:00
Panos Astithas
ac31d9b666
Bug 658368 - Expand console object with time and timeEnd methods that add a simple timer implementation; r=msucan,sdwilsh sr=gavin
2011-06-01 09:33:22 +03:00
Chris Pearce
861af8c44e
Bug 691583 - Dispatch showfullscreenwarning chrome event when restricted key pressed in DOM full-screen mode. r=smaug
2011-11-01 18:11:40 +13:00
Olli Pettay
e4fe236060
Bug 698061 - document.importNode's deep attribute should be optional, r=sicking
2011-10-30 23:17:53 +02:00
Olli Pettay
940611c04c
Bug 291653, make window level listeners work consistently with other listeners, r=jst
2011-10-26 14:49:37 +03:00
Peter Van der Beken
86513cf220
Fix for bug 693258 (Fixes for test failures when turning off new list DOM bindings). r=bz/Waldo.
...
--HG--
extra : rebase_source : f0b6f8443cc29098ce75c114ff5a343597d9f38c
2011-10-13 15:36:09 +02:00
Ms2ger
7994f114f3
Bug 693154 - Remove Document.xmlStandalone; r=sicking
2011-10-15 09:28:44 +02:00
Peter Van der Beken
418758932f
Bug 648801 (new DOM list bindings) - Bring order of getters/setters in line with WebIDL. r=bz/jst/mrbkap.
...
--HG--
extra : rebase_source : 70625cb118be79cf773a193262d8ad1c8db8a1ec
2011-08-20 15:53:33 +02:00
Ed Morley
72ed7305fc
Bug 689884 - Deleted the now unused Makefiles from the tree; r=khuey
2011-10-06 17:15:07 +01:00
Ed Morley
918444551f
Bug 689884 - Skip Makefiles that are no-op or else only |DIRS = a_single_subdir|; r=khuey
2011-10-06 17:15:07 +01:00
Ms2ger
14316d1d35
Bug 687318 - Allow createProcessingInstruction in HTML; r=smaug
2011-10-01 18:14:40 +02:00
Ms2ger
bd3d754000
Bug 687426 - Remove Document.xmlEncoding; r=sicking
2011-10-01 18:14:40 +02:00
Matt Brubeck
4a976aab61
Back out 2780356be1a1 (bug 675574) and 9928fb9a32b1 (bug 690220) on suspicion of causing browser-chrome shutdown hangs
2011-09-29 14:44:36 -07:00
Mounir Lamouri
6c638adde5
Bug 675574 - Do not allow more than one call to window.open() when we allow popups. r=jst
2011-09-28 23:23:36 +02:00
Boris Zbarsky
095402dd70
Bug 689564. Only forward event attributes on body/frameset to the window if we also forward the corresponding on* property. r=smaug
2011-09-28 11:54:50 -04:00
Panos Astithas
6635bcd31c
Bug 664131 - Expand console object with group methods that indent future console messages in order to create separate blocks of visually combined output; r=gavin
2011-06-14 14:38:11 +03:00
Ehsan Akhgari
35bc55c17b
Bug 685788 - Test for bug 593174 conceals its location after it's done; r=ted,jlebar
2011-09-23 15:59:22 -04:00
Boris Zbarsky
788803a0af
Bug 660233 part 1. Fix tests that assume UniversalXPConnect in otherwise-untrusted pages will get one nodePrincipal, documentURIObject, baseURIObject properties. r=mrbkap
...
--HG--
rename : dom/tests/mochitest/bugs/test_bug396843.html => dom/tests/browser/browser_bug396843.js
2011-09-23 01:03:50 -04:00
Paul Biggar
d8fd60d75c
Change in-tree users of Array.prototype.splice to not rely on non-standard behavior of deleting all elements from |k| onward for |arr.splice(k)|. r=jwalden
...
--HG--
extra : rebase_source : b2f041ab27c500636598fe6213481c1a5f0989e8
2011-09-22 15:43:11 -07:00
Justin Lebar
dc2fd37a91
Bug 629535 - Add navigator.doNotTrack. r=sicking
...
--HG--
extra : rebase_source : 48631ff375196045de1c2865ab4ee9b9c219c736
2011-09-19 15:59:22 -04:00
Olli Pettay
2f2d683768
Bug 675166 - Make DocumentTypeNode to use NodeInfoManager of the document, r=sicking
...
--HG--
extra : rebase_source : c05867591dc394695c35de92a0c62ca5df9db1d6
2011-09-17 06:32:32 -07:00
Masatoshi Kimura
b568eebe2a
Bug 685774 - Implement document.scripts. r=bz
2011-09-09 19:18:03 +02:00
Ehsan Akhgari
7531e87587
Merge mozilla-central and mozilla-inbound
2011-09-07 10:53:26 -04:00
Johnny Stenback
4c29f85d38
Fixing bug 641552. Add mechanism for dynamically registering properties on the navigator object in all pages. r=peterv
2011-09-06 15:01:01 -04:00
Blake Kaplan
d05a66958e
Bug 684115 - Test what happens when chrome takes an XHR from one origin and sticks it in another origin. r=sicking
2011-09-02 16:48:49 -07:00
Boris Zbarsky
dd3d708aa6
Bug 639720. Get rid of the Window class setter so that SETNAME on the global is faster in the browser. r=mrbkap
2011-08-31 18:10:16 -04:00
Ehsan Akhgari
936b61421b
Keep changeset ee8c8daffe43 backed out on the reverted tree
2011-09-02 09:06:59 -04:00
Ehsan Akhgari
a171549936
Revert to changeset e6fc4594c22e which was the last one to get a green Win7 tp run
2011-09-02 09:03:08 -04:00
Ehsan Akhgari
2b54c2fd7c
Backout changeset ee8c8daffe43 (bug 639720) on the suspicion that it might be the culprit behind the Linux Debug red
2011-09-01 21:02:56 -04:00
Boris Zbarsky
d9d5a64764
Bug 639720. Get rid of the Window class setter so that SETNAME on the global is faster in the browser. r=mrbkap
2011-08-31 18:10:16 -04:00
Boris Zbarsky
75baef868d
Bug 684544. Restore missing null-check for location setter. r=mrbkap
2011-09-06 22:57:46 -04:00
Phil Ringnalda
74787fa14f
Back out fc945dec50bb and de06684dabc4 (bug 642551), 64c328251a24 (bug 683952) and 9d0d13998ebb (bug 684544) for orange on a CLOSED TREE
2011-09-06 21:42:54 -07:00
Boris Zbarsky
664f361262
Bug 684544. Restore missing null-check for location setter. r=mrbkap
2011-09-06 22:57:46 -04:00
Ed Morley
243415d54c
Backout 89b87e96dc17 (bug 639720), b449db7a038b (bug 679689) & ef216b965a04 (bug 679671) for Mochitest oranges, on a CLOSED TREE; a=philor
2011-09-01 00:58:00 +01:00
Boris Zbarsky
2129c4eb85
Bug 639720. Get rid of the Window class setter so that SETNAME on the global is faster in the browser. r=mrbkap
2011-08-31 18:10:16 -04:00
Boris Zbarsky
8bdd1a64af
Bug 659350 part 5. The guts of the change to move from storing inline event handlers on the JSObject to storing them in the event listener manager directly, so we can easily set/read them via IDL.
...
The changes here are as follows:
1) nsIJSEventListener now stores the handler. This is guaranteed to be already bound properly, if needed, before being set in the nsIJSEventListener.
2) The old classinfo glue to deal with on* properties is gone.
3) IDL-based methods for on* properties have been added.
2011-08-24 15:49:25 -04:00
Doug Turner
8462e926f8
Bug 677256 - Migrate to Google Location Service v2. r=stover
...
--HG--
extra : rebase_source : ffd978d72ce3100db4f3fb6db8c26745fe2a5eb8
2011-08-09 13:02:39 -07:00
Malini Das
960a7c7495
Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- new tests. r=jmaher, a=test-only
2011-08-12 12:21:44 -04:00
Malini Das
02665c9658
Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- plain 1/1. r=jmaher, a=test-only
2011-08-12 12:21:42 -04:00
Malini Das
da32b5cbd3
Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- update tests. r=jmaher, a=test-only
2011-08-12 12:21:37 -04:00
Malini Das
e306b1b5aa
Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- chrome. r=jmaher, a=test-only
2011-08-12 12:21:36 -04:00
Malini Das
0efd71b59a
Bug 367393 - Add a packed MochiKit that contains only SimpleTest dependencies- harness. r=jmaher, a=test-only
2011-08-12 12:21:35 -04:00
Marco Bonardo
8dfa1762f3
Merge last green changeset from mozilla-inbound to mozilla-central
2011-08-04 11:19:01 +02:00
Honza Bambas
333edf60a8
Bug 662511 - localStorage.key() gets out-of-sync when localStorage is updated in a separate window, r=jst
2011-08-03 23:36:51 +02:00
Tim Taubert
c437e5e1f6
merge the last green changeset on m-c to fx-team
2011-08-03 16:45:19 +02:00