Ms2ger
5ed305dd22
Bug 854329 - Part b: Import more tests; rs=mounir
2013-04-04 09:04:24 +02:00
Ms2ger
529b339870
Bug 854329 - Part a: Import more tests; rs=mounir
2013-04-04 09:04:00 +02:00
Ms2ger
0d61f56f03
No bug - Correct reference to importTestSuites.py in comments in generated moz.build files.
2013-04-04 09:03:55 +02:00
Aryeh Gregor
870eab27c7
Bug 851916 part 2 - createHTMLDocument() should work with no arguments; r=bz
2013-03-21 14:55:08 +02:00
Aryeh Gregor
ec0f1b2bb3
Bug 851916 part 1 - Update dom/imptests/webapps/ and harness; r=Ms2ger
...
--HG--
rename : dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_ChildNode-remove.js => dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/ChildNode-remove.js
2013-03-21 14:54:43 +02:00
Aryeh Gregor
d12e63e14f
Bug 853449 - Dispatching an event that's already being dispatched should throw InvalidStateError; r=smaug
2013-04-02 17:10:45 +03:00
Boris Zbarsky
2cb912c299
Bug 856752. Reinstate Node.hasAttributes. r=khuey
2013-04-02 00:04:19 -04:00
Kyle Machulis
72a717a860
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
2013-04-01 11:36:59 -07:00
Kyle Machulis
43628a7867
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
2013-03-29 15:12:58 -07:00
Kyle Machulis
334c0800cf
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
...
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
2013-03-29 13:56:18 -07:00
Boris Zbarsky
6020a94656
Bug 855025. Always do Xrays for DOM interface objects. r=peterv
2013-03-27 22:47:25 -04:00
Boris Zbarsky
24422ccd0d
Bug 848332 part 2. Switch XMLDocument to WebIDL. r=peterv
2013-03-26 11:31:54 -04:00
Aryeh Gregor
b4a520d2b8
Bug 849661 - Remove support for Node.hasAttributes(); r=bz
2013-03-21 14:48:32 +02:00
Aryeh Gregor
32798624fe
Bug 852115 - initEvent should unset defaultPrevented; r=smaug
2013-03-20 16:15:58 +02:00
Gregory Szorc
89e86f9b21
Bug 844654 - Part 3: Remove now empty Makefile.in files; rs=khuey
...
--HG--
extra : rebase_source : 8de9c7f68a953e574dda22f8c14c2b2ca60444f9
2013-03-19 18:49:07 -07:00
Ms2ger
4ec472b450
Bug 844134 - Move the 'attributes' property from Node to Element; r=sicking
2013-03-17 09:51:34 +01:00
Aryeh Gregor
07f1711dbc
Bug 801562 - Remove Node.isSupported; r=bz
...
--HG--
rename : content/svg/content/test/test_isSupported.xhtml => content/svg/content/test/test_hasFeature.xhtml
2013-03-15 12:21:52 +02:00
Trevor Saunders
585a307b78
bug 825341 - convert range to webidl r=bz, smaug
2013-02-07 07:09:41 -05:00
Phil Ringnalda
97983b5f15
Back out fee79a593fd3 and 2c8930343985 (bug 825341) for having probably needed-clobber
2013-03-11 20:10:18 -07:00
Trevor Saunders
bcb6f556e0
bug 825341 - convert range to webidl r=bz, smaug
2013-02-07 07:09:41 -05:00
Ms2ger
89fffd12a6
Bug 847195 - Make NamedNodeMap only deal with Attrs; r=khuey
...
--HG--
rename : dom/interfaces/core/nsIDOMNamedNodeMap.idl => dom/interfaces/core/nsIDOMMozNamedAttrMap.idl
2013-03-10 09:00:33 +01:00
Ms2ger
161a2d489e
Bug 802560 - Handle the second argument to DOMImplementation.createDocument correctly; r=bz
2013-03-10 08:58:42 +01:00
Olli Pettay
eaf67cc919
Bug 822399 - Make Event to use Paris bindings, r=peterv
2013-03-09 13:34:29 +02:00
Boris Zbarsky
8cfff048ee
Bug 776536 part 4. Turn on WebIDL bindings for NodeIterator and TreeWalker. r=peterv
...
The behavior here is a bit weird because Document is still not a
WebIDL object, so calling createNodeIterator or createTreeWalker via
an Xray will call the XPCOM versions of those methods. That means
that I can't just disable XPCOM-based wrapping for TreeWalker and
NodeIterator altogether, unfortunately, which means a web page could
try stashing a TreeWalker in something like userdata and then getting
it back and end up wrapping it as an XPCOM object the second time.
I could "fix" that by adding a wrapper cache and whatnot, I guess, if
desired... But the problem will go away once we convert Document in
any case.
2013-02-28 12:56:42 -05:00
Ryan VanderMeulen
c952e87e03
Backed out 7 changesets (bug 832920, bug 776536, bug 843261) for mochitest-a11y assertions on a CLOSED TREE.
...
--HG--
rename : content/base/src/NodeIterator.cpp => content/base/src/nsNodeIterator.cpp
rename : content/base/src/NodeIterator.h => content/base/src/nsNodeIterator.h
rename : content/base/src/TreeWalker.cpp => content/base/src/nsTreeWalker.cpp
rename : content/base/src/TreeWalker.h => content/base/src/nsTreeWalker.h
2013-02-28 14:41:30 -05:00
Boris Zbarsky
08d376c598
Bug 776536 part 4. Turn on WebIDL bindings for NodeIterator and TreeWalker. r=peterv
...
The behavior here is a bit weird because Document is still not a
WebIDL object, so calling createNodeIterator or createTreeWalker via
an Xray will call the XPCOM versions of those methods. That means
that I can't just disable XPCOM-based wrapping for TreeWalker and
NodeIterator altogether, unfortunately, which means a web page could
try stashing a TreeWalker in something like userdata and then getting
it back and end up wrapping it as an XPCOM object the second time.
I could "fix" that by adding a wrapper cache and whatnot, I guess, if
desired... But the problem will go away once we convert Document in
any case.
2013-02-28 12:56:42 -05:00
Ms2ger
a01f04340f
Bug 784841 - Part 18j: Convert dom/imptests with parseFailures.py output; rs=gps
2013-02-25 12:47:19 -08:00
Ms2ger
77ad7ecf33
Bug 784841 - Part 18i: Convert dom/imptests with importTestsuite.py output; rs=gps
2013-02-25 12:47:19 -08:00
Gregory Szorc
4479cef096
Bug 784841 - Part 15: Produce moz.build files for dom imported tests; r=Ms2ger
...
--HG--
rename : dom/imptests/writeMakefile.py => dom/imptests/writeBuildFiles.py
2013-02-25 12:46:50 -08:00
David Humphrey (:humph)
3de3f07473
Bug 629801 Implement HTML5 <time> element. r=smaug, peterv, hsivonen
2013-02-22 10:07:42 -05:00
Ryan VanderMeulen
b30facb288
Backed out 6 changesets (bug 832920, bug 825341, bug 838582, bug 842726, bug 629801, bug 842561) for Linux32 debug mochitest-2 and Windows/OSX mochitest-browser-chrome failures on a CLOSED TREE.
2013-02-22 15:30:06 -05:00
Ryan VanderMeulen
7fb17435cb
Merge m-c to inbound.
2013-02-22 12:45:21 -05:00
Gregory Szorc
52044bbd9d
Bug 784841 - Part 14: Use 4-space indent on Python scripts in dom/imptests; rs=Ms2ger
2013-02-21 10:56:48 -08:00
David Humphrey (:humph)
5c015b3fea
Bug 629801 Implement HTML5 <time> element. r=smaug, peterv, hsivonen
2013-02-22 10:07:42 -05:00
Trevor Saunders
1b867cc29f
bug 825341 - convert range to webidl r=bz, smaug
2013-02-07 07:09:41 -05:00
Ms2ger
d291f8365c
Bug 838088 - Update html tests; rs=mounir
...
--HG--
rename : dom/imptests/failures/html/tests/submission/Opera/microdata/Makefile.in => dom/imptests/failures/html/old-tests/submission/Opera/microdata/Makefile.in
rename : dom/imptests/failures/html/tests/submission/Opera/microdata/test_001.html.json => dom/imptests/failures/html/old-tests/submission/Opera/microdata/test_001.html.json
rename : dom/imptests/html/tests/submission/Mozilla/test_pageload-image.html => dom/imptests/html/html/browsers/browsing-the-web/read-media/test_pageload-image.html
rename : dom/imptests/html/tests/submission/Mozilla/test_pageload-video.html => dom/imptests/html/html/browsers/browsing-the-web/read-media/test_pageload-video.html
rename : dom/imptests/html/tests/submission/Mozilla/test_script-for-onload.html => dom/imptests/html/html/semantics/scripting-1/the-script-element/test_script-for-onload.html
rename : dom/imptests/html/tests/submission/Mozilla/test_body-onload.html => dom/imptests/html/html/webappapis/scripting/events/test_body-onload.html
rename : dom/imptests/html/tests/submission/Mozilla/test_window-onerror-parse-error.html => dom/imptests/html/html/webappapis/scripting/processing-model-2/test_window-onerror-parse-error.html
rename : dom/imptests/html/tests/submission/Mozilla/test_window-onerror-runtime-error-throw.html => dom/imptests/html/html/webappapis/scripting/processing-model-2/test_window-onerror-runtime-error-throw.html
rename : dom/imptests/html/tests/submission/Mozilla/test_window-onerror-runtime-error.html => dom/imptests/html/html/webappapis/scripting/processing-model-2/test_window-onerror-runtime-error.html
rename : dom/imptests/html/tests/submission/Opera/microdata/Makefile.in => dom/imptests/html/old-tests/submission/Opera/microdata/Makefile.in
rename : dom/imptests/html/tests/submission/Opera/microdata/test_001.html => dom/imptests/html/old-tests/submission/Opera/microdata/test_001.html
2013-02-12 10:54:30 +01:00
Ms2ger
3d5702ea2e
No bug - Remove windows line endings from Opera's microdata test in preparation for an update.
2013-02-12 10:53:21 +01:00
Alexandre Poirot
2118fd0622
Bug 821695 - Do not load videocontrols.xml if the audio/video tag does not need it. r=roc
...
--HG--
extra : rebase_source : 567194ec6ee1862af1d7988aa9a0c3b50f07788a
2013-02-01 08:47:55 -05:00
Jet Villegas
f2fcf1748d
Bug 812638: Add new known font size test failures. r=ehsan
2013-02-06 16:48:37 -08:00
Boris Zbarsky
c5497770e8
Bug 838518 part 2. Fix nodeiterator callers per the API change that was made. r=smaug
2013-02-06 14:22:33 +00:00
Boris Zbarsky
1ee4c73471
Bug 838518 part 1. Fix treewalker callers per the API change that was made. r=smaug
2013-02-06 14:22:33 +00:00
Boris Zbarsky
d2613fc2a0
Bug 829252 part 4. Turn on the EventTarget quickstubs. r=peterv
2013-01-29 08:44:01 -05:00
Boris Zbarsky
8c90a7ce52
Bug 826703 part 4. Convert ProcessingInstruction to WebIDL. r=peterv
2013-01-08 15:45:06 -05:00
Boris Zbarsky
0e716a09d7
Bug 824823 part 9. Convert Comment to WebIDL. r=peterv
2013-01-04 12:02:14 -05:00
Boris Zbarsky
d81fad890e
Bug 824823 part 8. Convert nsTextNode to WebIDL. r=peterv
2013-01-04 12:02:14 -05:00
Boris Zbarsky
8bd1686555
Bug 824823 part 7. Implement WebIDL CharacterData API on nsGenericDOMDataNode. r=peterv
2013-01-04 12:02:14 -05:00
David Zbarsky
fa08ae1462
Bug 824603 Part 1: Enable binding for DocumentType r=bz
2012-12-28 20:34:02 -05:00
Boris Zbarsky
3a7914c772
Bug 816180. Convert DocumentFragment to WebIDL. r=peterv
2012-12-24 19:35:19 -08:00
Boris Zbarsky
87d74398df
Bug 816387 followup. Remove more todo stuff from tests now that we made it work. r=bustage
2012-12-23 15:48:20 -08:00
Boris Zbarsky
b39b127157
Bug 816387 part 2. Hook up the Document WebIDL API to quickstubs. r=peterv
2012-12-23 14:34:22 -08:00
Boris Zbarsky
f267cd20a4
Bug 816387 part 1. Hook up the WebIDL bindings for Document. r=peterv
2012-12-23 14:33:33 -08:00
Ms2ger
8dd150af35
Merge PGO-green changeset from inbound to m-c.
2012-12-22 12:06:37 +01:00
Ms2ger
f11ed9361b
Bug 793151 - Change the length property of a WebIDL method to the mimimum number of arguments, instead of the maximum; r=bz
2012-12-22 09:04:17 +01:00
Olli Pettay
68fe3c1606
Bug 790978 - Convert MutationObserver to webidl, r=bz
...
--HG--
extra : rebase_source : 86b4120ef1f3bedc6554761af715de8413f01343
2012-12-18 16:50:52 +02:00
Peter Van der Beken
f931ddad9f
Fix for bug 821606 (Turn on WebIDL bindings for Element and HTMLElement). r=bz.
...
--HG--
extra : rebase_source : f85002d801871a3a99c1b8bc121509ae87d2f665
2012-11-22 12:09:57 +01:00
Ms2ger
5747365305
Bug 816056 - bug 817288 - bug 817980 - bug 820847 - bug 822037 - Disable tests due to too many timeouts.
2012-12-15 22:26:47 +01:00
Boris Zbarsky
a1a7cade04
Bug 816375. Switch NodeFilter to WebIDL bindings. r=peterv
2012-12-14 14:10:49 -05:00
Ms2ger
8fc67dfff7
Bug 776539 - Move FormData to Paris bindings; r=bz
2012-12-11 19:09:56 +01:00
Peter Van der Beken
d9d1c6382c
Fix for bug 817420 (new bindings api for element broke cloud9/apf) - don't register Element prototype yet, we need to convert plain elements to the new DOM binding first. r=bz.
2012-12-03 15:26:44 +01:00
Ms2ger
92b25da790
Bug 816103 - Part b: Update webapps tests; r=bz
2012-12-02 09:52:36 +01:00
Ms2ger
9ce1e47aee
Bug 816103 - Part a: Handle encodings explicitly in parseFailures.py; r=jhammel
2012-12-02 09:52:18 +01:00
Peter Van der Beken
7d77272a5e
Fix for bug 814195 (Replace Element quickstubs with new binding methods). r=bz.
2012-11-22 12:09:43 +01:00
Ed Morley
563634fe75
Backout 67e95e421678 (bug 814195) for Windows debug jsreftest failures on a CLOSED TREE
2012-11-29 11:17:11 +00:00
Peter Van der Beken
46c89ae29b
Fix for bug 814195 (Replace Element quickstubs with new binding methods). r=bz.
...
--HG--
extra : rebase_source : 360b2ee1bc678265781991149185a1c1d262642e
2012-11-22 12:09:43 +01:00
Ehsan Akhgari
d6d6c3d26a
Backed out 6 changesets (bug 814821, bug 815158, bug 814195) for test failures
...
Backed out changeset 0c2011091748 (bug 815158)
Backed out changeset 9d70b4460508 (bug 814195)
Backed out changeset bf8746658a72 (bug 814821)
Backed out changeset e73366b088d7 (bug 814821)
Backed out changeset 49fc6d535c41 (bug 814821)
Backed out changeset 987aea26a43a (bug 814821)
2012-11-27 16:30:39 -05:00
Peter Van der Beken
c15e9ce14c
Fix for bug 814195 (Replace Element quickstubs with new binding methods). r=bz.
...
--HG--
extra : rebase_source : 349ceea8412f4133e1b9de4e2859d7663da27fa5
2012-11-22 12:09:43 +01:00
Ms2ger
3db7427469
Bug 814777 - Try to fix timeout handling for testharness.js tests; r=jgraham
2012-11-24 20:05:37 +01:00
Peter Van der Beken
47915af064
Fix for bug 812333 (Replace Node quickstubs with new binding methods) - part 2: install Node's binding methods on the XPConnect proto. r=bz.
2012-11-22 12:09:41 +01:00
Mats Palmgren
e446981985
Bug 803924 - Crash with range, splitText. r=smaug
2012-11-20 21:14:15 +01:00
Ms2ger
429b2d8539
Bug 811068 - Copy ^headers^ file in importTestsuite.py; r=jhammel (DONTBUILD)
2012-11-12 23:20:19 +01:00
Ms2ger
01bbe9c191
No bug - Add a step I forgot to dom/imptests/README. DONTBUILD
2012-11-12 21:39:10 +01:00
Boris Zbarsky
750dec5380
Bug 772869. Make getOwnPropertyNames work correctly for WebIDL proxy bindings. r=peterv,ms2ger
2012-11-05 11:58:03 -05:00
Ms2ger
1dafc5be3e
Bug 804005 - Update dom/imptests python to be py3k-compatible; r=jhammel
2012-11-04 09:00:06 +01:00
Aryeh Gregor
70c46f800c
Bug 801425 - Make hasFeature() and isSupported() always return true for non-SVG features; r=bz
2012-10-15 13:59:38 +02:00
Boris Zbarsky
e435c28e4e
Bug 798151. Support stringifier operations (but not yet attributes!) on non-proxy bindings, and fix Object.prototype.toString for proxy bindings. r=peterv
2012-10-22 13:08:52 -04:00
Ms2ger
bf2b5f9bda
Bug 796903 - Part b: Remove classinfo from DOMImplementation; r=bz
2012-10-21 09:38:41 +02:00
Trevor Saunders
85dfb659cf
Bug 742191 - Part d: Throw TypeErrors for Paris binding exceptions; r=bz
2012-10-16 14:06:10 -04:00
Ryan VanderMeulen
409f1f5ca2
Merge inbound to m-c.
2012-10-14 16:39:23 -04:00
Ms2ger
1a160d7b3f
Bug 742191 - Part c: Update testharness.js and friends some more; r=Aryeh
2012-10-14 09:48:14 +02:00
Ms2ger
53e642872f
Bug 742191 - Part b: Update testharness.js and friends; r=Aryeh
2012-10-14 09:46:57 +02:00
Ms2ger
fecd660b2f
Bug 742191 - Part a: Regenerate expected failures; r=Aryeh
2012-10-14 09:46:53 +02:00
Ms2ger
f6de8c6006
Bug 742191 - Part 0: Fix the editing/ special case in parseFailures.py to actually work; r=Aryeh
2012-10-14 09:46:46 +02:00
Aryeh Gregor
c24a828b17
Bug 799905 - .URL and .compatMode should be defined on Document, not HTMLDocument; r=bz
2012-10-11 14:48:31 +02:00
Peter Van der Beken
6cf9f896da
Fix for bug 791774 (Hook DOM lists up to the new DOM bindings). r=bz.
...
--HG--
extra : rebase_source : 873020edd9cd3defc932d77bd26b5d65ebf263cb
2012-06-13 17:18:30 +02:00
Ms2ger
4a3217211b
No bug - Fix stupid bug because I don't know Python; hat-tip=tbsaunde (NPOTB, DONTBUILD)
2012-09-30 21:24:25 +02:00
Ms2ger
0b91d0029f
No bug - Remove some dead code from importTestsuite.py. (NPOTB, DONTBUILD)
2012-09-30 09:53:39 +02:00
Ms2ger
37b4c0d887
Bug 794891 - Format known-failures JSON files according to local conventions for now. (NPOTB, DONTBUILD)
2012-09-30 09:52:06 +02:00
Aryeh Gregor
6b50650db5
Bug 794891 - Don't reorder expected failures in parseFailures.py; r=Ms2ger
2012-09-28 12:25:35 +02:00
Aryeh Gregor
b9ed7e8ba3
Bug 787432 - Don't strip existing empty wrappers when inserting text; r=ehsan
2012-09-27 14:39:39 +02:00
Ryan VanderMeulen
4fc77da566
Backout bug 792215 for suspected Windows m-oth leaks.
...
CLOSED TREE
2012-09-25 22:40:56 -04:00
Kannan Vijayan
5baa27268e
Bug 792215 part 2. Convert old proxy bindings to JSNative getters and setters. r=peterv,ejpbruel
2012-09-25 14:44:40 -04:00
Peter Van der Beken
6f38d2708d
Fix for bug 788532 (Add the new DOM bindings API to DOM lists). r=bz.
...
--HG--
extra : rebase_source : 18e21a786b6a9cc2aeada52ba5ca3a2614cb596b
2012-09-05 22:49:53 +02:00
Ms2ger
c5cf2147ea
Bug 782651 - Get importTestsuite.py working again; r=jhammel
...
--HG--
rename : dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_Range-intersectsNode.html => dom/imptests/webapps/DOMCore/tests/submissions/Ms2ger/test_Range-intersectsNode-binding.html
2012-09-06 09:14:48 +02:00
Mike Hommey
5b4952a948
Bug 780457 - Adapt importTestsuite.py to changes from bug 774032. r=Ms2ger
2012-08-07 09:30:04 +02:00
Ms2ger
921ab270c6
Bug 600111 - Throw the correct exceptions in XMLHttpRequest.setRequestHeader(); r=sicking
2012-08-04 09:44:01 +02:00
Ms2ger
dadd37a9b3
Bug 714279 - range.compareBoundaryPoints should throw NOT_SUPPORTED_ERR when called with an invalid 'how' argument; r=smaug
2012-08-04 09:44:00 +02:00
Ms2ger
71696aa0f2
Bug 774705 - Part b: Throw a TypeError when trying to construct an interface without a constructor; r=bz
2012-08-04 09:44:00 +02:00
Ms2ger
3c125991bc
Bug 774705 - Part a: Update /resources.
2012-08-04 09:43:59 +02:00
Ms2ger
215c4e9e59
Bug 771934 - Throw NOT_FOUND_ERR instead of HIERARCHY_REQUEST_ERR from nsINode::RemoveChild; r=bz
2012-08-04 09:43:59 +02:00
Ms2ger
6113a6857c
Bug 768310 - Don't throw from Event.initEvent if it's called during event dispatch; r=smaug
2012-08-04 09:43:59 +02:00
Ms2ger
779a28f00e
Bug 771932 - Import some more DOM4 tests; r=sicking
2012-08-04 09:43:59 +02:00
Mike Hommey
70d7c821af
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
2012-08-04 20:26:44 +02:00
Ed Morley
f4181983a1
Revert inbound to 3d5d1daa2505 to stop OS X M5 failures (backout not clean/could have been a bad merge) on a CLOSED TREE
2012-08-04 18:05:15 +01:00
Ms2ger
53d3190874
Bug 600111 - Throw the correct exceptions in XMLHttpRequest.setRequestHeader(); r=sicking
2012-08-04 09:44:01 +02:00
Ms2ger
93a621843a
Bug 714279 - range.compareBoundaryPoints should throw NOT_SUPPORTED_ERR when called with an invalid 'how' argument; r=smaug
2012-08-04 09:44:00 +02:00
Ms2ger
86de6cd109
Bug 774705 - Part b: Throw a TypeError when trying to construct an interface without a constructor; r=bz
2012-08-04 09:44:00 +02:00
Ms2ger
e5dbf6b206
Bug 774705 - Part a: Update /resources.
2012-08-04 09:43:59 +02:00
Ms2ger
21553e9b60
Bug 771934 - Throw NOT_FOUND_ERR instead of HIERARCHY_REQUEST_ERR from nsINode::RemoveChild; r=bz
2012-08-04 09:43:59 +02:00
Ms2ger
eb8fc3e4fa
Bug 768310 - Don't throw from Event.initEvent if it's called during event dispatch; r=smaug
2012-08-04 09:43:59 +02:00
Ms2ger
48b417b456
Bug 771932 - Import some more DOM4 tests; r=sicking
2012-08-04 09:43:59 +02:00
Aryeh Gregor
8782e85213
Bug 291789 part 3 - Try not to ever delete across table boundaries; r=ehsan
2012-07-27 17:03:28 +03:00
Benjamin Peterson
78a5439268
Bug 761723 - Save script sources to implement Function.prototype.toString. r=jorendorff,njn,jimb,jst,Ms2ger
...
--HG--
extra : rebase_source : de1b55647780a30f98fe84d29ee3cb4a437a3ece
2012-07-20 20:17:38 +02:00
Nathan Froyd
58ac09c54d
Bug 772202 - fix writeMakefile.py to conform to new mochitest world order; r=Ms2ger
2012-07-09 16:35:49 -04:00
Ms2ger
cbdc7a3775
Bug 579638 - Reinstate Range.intersectsNode; r=smaug
2012-07-18 12:36:08 +02:00
Ms2ger
23b178ab1f
Bug 765464 - Part c: Throw some TypeErrors; r=khuey
2012-07-18 12:36:08 +02:00
Ms2ger
202ac4c8c6
No bug - Also log the number of elided messages when finishing the test.
2012-07-18 12:36:08 +02:00
Ms2ger
49e9bf3592
No bug - Add an extra message when TestRunner.js calls timeout.
2012-07-18 12:36:08 +02:00
Ms2ger
9538f65ab1
Bug 756083 - Part b: Introduce code to make it easier to update expected failures for imported testharness.js tests; r=jhammel
2012-07-18 12:36:07 +02:00
Ms2ger
7cb14a31d1
Bug 756083 - Part a: Factor out Makefile utilities; r=jhammel
2012-07-18 12:36:07 +02:00
Ms2ger
2dfe3e8c29
No bug - Regenerate Makefile.ins under dom/imptests.
2012-07-18 12:36:07 +02:00
Nathan Froyd
bfff055672
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
Aryeh Gregor
4b464cdfe8
Bug 760052 - execCommand() should abort and return false for disabled commands; r=ehsan
2012-06-21 15:05:24 +03:00
Ms2ger
4948f8c326
No bug - Improve the message logged for elided passes in testharnessreport.js.
2012-06-21 09:21:55 +02:00
Johnny Stenback
d23c8a48c0
Fixing bug 616353. Make DOM constants constant. r=peterv
2010-12-03 09:10:46 -08:00
Ms2ger
1f50252f6b
Bug 764539 - Stringify the prototype class in Paris bindings to "InterfacePrototype" instead of "Interface Prototype"; r=bz
2012-06-21 09:20:28 +02:00
Ms2ger
304efb3327
Bug 765177 - Part c: Import XMLHttpRequest tests; r=bz
2012-06-21 09:11:07 +02:00
Ms2ger
e93b0493dc
Bug 765177 - Part b: Import approved DOMCore tests; r=bz
2012-06-21 09:11:07 +02:00
Ms2ger
0694b06721
Bug 765177 - Part a: Update WebStorage tests; r=bz
2012-06-17 10:11:16 +02:00
Ms2ger
c403b93455
Bug 763169 - Part c: Don't log all the passing results; f=philor r=jhammel
2012-06-17 10:11:14 +02:00
Ms2ger
8b517156fc
Bug 763169 - Part b: Miscellaneous fixes; r=jhammel
2012-06-17 09:51:22 +02:00
Ms2ger
b9ba89999a
Bug 763169 - Part a: Update resources from upstream and update test names in the expected failures for Selection tests; r=jhammel
2012-06-17 09:51:22 +02:00
Ryan VanderMeulen
5f2a19ee6e
Revert c39d36167b99 due to a horribly munged backout.
2012-06-10 19:44:50 -04:00
Ryan VanderMeulen
6d6c4efbab
Backout the bug 754202 backout due to orange.
2012-06-10 19:37:47 -04:00
Phil Ringnalda
742e62a57f
Bug 738244 followup followup, remove trailing comma
2012-06-07 20:25:30 -07:00
Jim Blandy
5f276dc0f9
Bug 738244: Mark test as now passing: dom/imptests/html/tests/submission/Opera/microdata/test_001.html | the namedItem property must be read/write (no r; tree orange for unexpected pass)
2012-06-07 18:44:08 -07:00
Aryeh Gregor
3095187fe9
Bug 761993 - Revert broken execCommand("insertparagraph") support; r=ehsan
2012-06-06 20:34:10 +03:00
Ms2ger
d677ade2f9
Bug 591467 - Add tests for microdata
2012-06-04 16:49:57 -07:00
Aryeh Gregor
18b6bfc148
Bug 757371 part 4 - Do not insert style tags if the style is already applied; r=ehsan
2012-05-23 10:49:29 +03:00
Aryeh Gregor
0d9f5e832b
Bug 757371 part 3 - Reuse existing style elements more aggressively; r=ehsan
2012-05-29 10:12:51 +03:00
Aryeh Gregor
4cad3af933
Bug 757371 part 2 - Improve correctness of nsHTMLCSSUtils::IsCSSEquivalentToHTMLInlineStyleSet; r=ehsan
2012-05-28 14:20:27 +03:00
Aryeh Gregor
1d13f6ca68
Bug 748310 - Return false for invalid createLink/insertImage values instead of throwing; r=ehsan
2012-05-22 12:37:17 +03:00
Aryeh Gregor
6f4ed9a285
Bug 748307 part 5 - Support insertText, forwardDelete, insertParagraph per spec; r=ehsan
2012-05-22 12:37:17 +03:00
Ms2ger
0e2241b478
Bug 756066 - Make StorageEventInit.key nullable; r=mayhemer
2012-05-25 09:18:31 +02:00
Ms2ger
d7a07a7ae6
Bug 756808 - Fix build error due to a trailing slash in the |DIRS| makefile variable; r=AryehGregor
2012-05-20 13:12:41 +02:00
Aryeh Gregor
e8bb3212b3
Bug 742240 - Handle unsupported commands per spec in execCommand/queryCommand*; r=ehsan
2012-04-15 15:57:20 +03:00
Ms2ger
81cb351df1
Merge m-c to m-i.
2012-05-18 13:32:20 +02:00
Ms2ger
28dd6980e6
Bug 754553 - Remove indexed property access from localStorage/sessionStorage; f=mayhemer r=sicking
2012-05-18 10:29:40 +02:00
Ms2ger
880296d19f
Bug 510849 - Support the empty string as a key for web storage (localStorage/sessionStorage); r=mayhemer
2012-05-18 10:29:40 +02:00
Aryeh Gregor
cc44c815c7
Bug 590640 part 7 - Preserve type-in state when performing block commands; r=ehsan
2012-05-06 10:53:11 +03:00
Aryeh Gregor
50071307e5
Bug 590640 part 6 - Don't create empty style tags unless we're about to insert text in them; r=ehsan
2012-05-10 15:00:14 +03:00