Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/interfaces-expected.txt

Issue 1988983002: Move the dom directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 CONSOLE MESSAGE: line 236: callback not yet supported
2 This is a testharness.js-based test.
3 PASS Event interface: existence and properties of interface object
4 PASS Event interface object length
5 PASS Event interface object name
6 FAIL Event interface: existence and properties of interface prototype object ass ert_equals: class string of Event.prototype expected "[object EventPrototype]" b ut got "[object Event]"
7 PASS Event interface: existence and properties of interface prototype object's " constructor" property
8 PASS Event interface: attribute type
9 PASS Event interface: attribute target
10 PASS Event interface: attribute currentTarget
11 PASS Event interface: constant NONE on interface object
12 PASS Event interface: constant NONE on interface prototype object
13 PASS Event interface: constant CAPTURING_PHASE on interface object
14 PASS Event interface: constant CAPTURING_PHASE on interface prototype object
15 PASS Event interface: constant AT_TARGET on interface object
16 PASS Event interface: constant AT_TARGET on interface prototype object
17 PASS Event interface: constant BUBBLING_PHASE on interface object
18 PASS Event interface: constant BUBBLING_PHASE on interface prototype object
19 PASS Event interface: attribute eventPhase
20 PASS Event interface: operation stopPropagation()
21 PASS Event interface: operation stopImmediatePropagation()
22 PASS Event interface: attribute bubbles
23 PASS Event interface: attribute cancelable
24 PASS Event interface: operation preventDefault()
25 PASS Event interface: attribute defaultPrevented
26 PASS Event interface: attribute timeStamp
27 FAIL Event interface: operation initEvent(DOMString,boolean,boolean) assert_equa ls: property has wrong .length expected 3 but got 0
28 PASS Event must be primary interface of document.createEvent("Event")
29 PASS Stringification of document.createEvent("Event")
30 PASS Event interface: document.createEvent("Event") must inherit property "type" with the proper type (0)
31 PASS Event interface: document.createEvent("Event") must inherit property "targe t" with the proper type (1)
32 PASS Event interface: document.createEvent("Event") must inherit property "curre ntTarget" with the proper type (2)
33 PASS Event interface: document.createEvent("Event") must inherit property "NONE" with the proper type (3)
34 PASS Event interface: document.createEvent("Event") must inherit property "CAPTU RING_PHASE" with the proper type (4)
35 PASS Event interface: document.createEvent("Event") must inherit property "AT_TA RGET" with the proper type (5)
36 PASS Event interface: document.createEvent("Event") must inherit property "BUBBL ING_PHASE" with the proper type (6)
37 PASS Event interface: document.createEvent("Event") must inherit property "event Phase" with the proper type (7)
38 PASS Event interface: document.createEvent("Event") must inherit property "stopP ropagation" with the proper type (8)
39 PASS Event interface: document.createEvent("Event") must inherit property "stopI mmediatePropagation" with the proper type (9)
40 PASS Event interface: document.createEvent("Event") must inherit property "bubbl es" with the proper type (10)
41 PASS Event interface: document.createEvent("Event") must inherit property "cance lable" with the proper type (11)
42 PASS Event interface: document.createEvent("Event") must inherit property "preve ntDefault" with the proper type (12)
43 PASS Event interface: document.createEvent("Event") must inherit property "defau ltPrevented" with the proper type (13)
44 PASS Event interface: document.createEvent("Event") must have own property "isTr usted"
45 PASS Event interface: document.createEvent("Event") must inherit property "timeS tamp" with the proper type (15)
46 PASS Event interface: document.createEvent("Event") must inherit property "initE vent" with the proper type (16)
47 FAIL Event interface: calling initEvent(DOMString,boolean,boolean) on document.c reateEvent("Event") with too few arguments must throw TypeError assert_throws: C alled with 0 arguments function "function () {
48 fn.apply(obj, args);
49 }" did not throw
50 PASS Event must be primary interface of new Event("foo")
51 PASS Stringification of new Event("foo")
52 PASS Event interface: new Event("foo") must inherit property "type" with the pro per type (0)
53 PASS Event interface: new Event("foo") must inherit property "target" with the p roper type (1)
54 PASS Event interface: new Event("foo") must inherit property "currentTarget" wit h the proper type (2)
55 PASS Event interface: new Event("foo") must inherit property "NONE" with the pro per type (3)
56 PASS Event interface: new Event("foo") must inherit property "CAPTURING_PHASE" w ith the proper type (4)
57 PASS Event interface: new Event("foo") must inherit property "AT_TARGET" with th e proper type (5)
58 PASS Event interface: new Event("foo") must inherit property "BUBBLING_PHASE" wi th the proper type (6)
59 PASS Event interface: new Event("foo") must inherit property "eventPhase" with t he proper type (7)
60 PASS Event interface: new Event("foo") must inherit property "stopPropagation" w ith the proper type (8)
61 PASS Event interface: new Event("foo") must inherit property "stopImmediatePropa gation" with the proper type (9)
62 PASS Event interface: new Event("foo") must inherit property "bubbles" with the proper type (10)
63 PASS Event interface: new Event("foo") must inherit property "cancelable" with t he proper type (11)
64 PASS Event interface: new Event("foo") must inherit property "preventDefault" wi th the proper type (12)
65 PASS Event interface: new Event("foo") must inherit property "defaultPrevented" with the proper type (13)
66 PASS Event interface: new Event("foo") must have own property "isTrusted"
67 PASS Event interface: new Event("foo") must inherit property "timeStamp" with th e proper type (15)
68 PASS Event interface: new Event("foo") must inherit property "initEvent" with th e proper type (16)
69 FAIL Event interface: calling initEvent(DOMString,boolean,boolean) on new Event( "foo") with too few arguments must throw TypeError assert_throws: Called with 0 arguments function "function () {
70 fn.apply(obj, args);
71 }" did not throw
72 PASS CustomEvent interface: existence and properties of interface object
73 FAIL CustomEvent interface object length assert_equals: wrong value for CustomEv ent.length expected 1 but got 0
74 PASS CustomEvent interface object name
75 FAIL CustomEvent interface: existence and properties of interface prototype obje ct assert_equals: class string of CustomEvent.prototype expected "[object Custom EventPrototype]" but got "[object CustomEvent]"
76 PASS CustomEvent interface: existence and properties of interface prototype obje ct's "constructor" property
77 PASS CustomEvent interface: attribute detail
78 PASS CustomEvent interface: operation initCustomEvent(DOMString,boolean,boolean, any)
79 PASS CustomEvent must be primary interface of new CustomEvent("foo")
80 PASS Stringification of new CustomEvent("foo")
81 PASS CustomEvent interface: new CustomEvent("foo") must inherit property "detail " with the proper type (0)
82 PASS CustomEvent interface: new CustomEvent("foo") must inherit property "initCu stomEvent" with the proper type (1)
83 PASS CustomEvent interface: calling initCustomEvent(DOMString,boolean,boolean,an y) on new CustomEvent("foo") with too few arguments must throw TypeError
84 PASS Event interface: new CustomEvent("foo") must inherit property "type" with t he proper type (0)
85 PASS Event interface: new CustomEvent("foo") must inherit property "target" with the proper type (1)
86 PASS Event interface: new CustomEvent("foo") must inherit property "currentTarge t" with the proper type (2)
87 PASS Event interface: new CustomEvent("foo") must inherit property "NONE" with t he proper type (3)
88 PASS Event interface: new CustomEvent("foo") must inherit property "CAPTURING_PH ASE" with the proper type (4)
89 PASS Event interface: new CustomEvent("foo") must inherit property "AT_TARGET" w ith the proper type (5)
90 PASS Event interface: new CustomEvent("foo") must inherit property "BUBBLING_PHA SE" with the proper type (6)
91 PASS Event interface: new CustomEvent("foo") must inherit property "eventPhase" with the proper type (7)
92 PASS Event interface: new CustomEvent("foo") must inherit property "stopPropagat ion" with the proper type (8)
93 PASS Event interface: new CustomEvent("foo") must inherit property "stopImmediat ePropagation" with the proper type (9)
94 PASS Event interface: new CustomEvent("foo") must inherit property "bubbles" wit h the proper type (10)
95 PASS Event interface: new CustomEvent("foo") must inherit property "cancelable" with the proper type (11)
96 PASS Event interface: new CustomEvent("foo") must inherit property "preventDefau lt" with the proper type (12)
97 PASS Event interface: new CustomEvent("foo") must inherit property "defaultPreve nted" with the proper type (13)
98 PASS Event interface: new CustomEvent("foo") must have own property "isTrusted"
99 PASS Event interface: new CustomEvent("foo") must inherit property "timeStamp" w ith the proper type (15)
100 PASS Event interface: new CustomEvent("foo") must inherit property "initEvent" w ith the proper type (16)
101 FAIL Event interface: calling initEvent(DOMString,boolean,boolean) on new Custom Event("foo") with too few arguments must throw TypeError assert_throws: Called w ith 0 arguments function "function () {
102 fn.apply(obj, args);
103 }" did not throw
104 PASS EventTarget interface: existence and properties of interface object
105 PASS EventTarget interface object length
106 PASS EventTarget interface object name
107 FAIL EventTarget interface: existence and properties of interface prototype obje ct assert_equals: class string of EventTarget.prototype expected "[object EventT argetPrototype]" but got "[object EventTarget]"
108 PASS EventTarget interface: existence and properties of interface prototype obje ct's "constructor" property
109 PASS EventTarget interface: operation addEventListener(DOMString,EventListener,[ object Object],[object Object])
110 PASS EventTarget interface: operation removeEventListener(DOMString,EventListene r,[object Object],[object Object])
111 PASS EventTarget interface: operation dispatchEvent(Event)
112 PASS EventListener interface: existence and properties of interface object
113 PASS EventListener interface: existence and properties of interface prototype ob ject
114 PASS EventListener interface: existence and properties of interface prototype ob ject's "constructor" property
115 PASS EventListener interface: operation handleEvent(Event)
116 PASS NodeList interface: existence and properties of interface object
117 PASS NodeList interface object length
118 PASS NodeList interface object name
119 FAIL NodeList interface: existence and properties of interface prototype object assert_equals: class string of NodeList.prototype expected "[object NodeListProt otype]" but got "[object NodeList]"
120 PASS NodeList interface: existence and properties of interface prototype object' s "constructor" property
121 PASS NodeList interface: operation item(unsigned long)
122 PASS NodeList interface: attribute length
123 PASS NodeList must be primary interface of document.querySelectorAll("script")
124 PASS Stringification of document.querySelectorAll("script")
125 PASS NodeList interface: document.querySelectorAll("script") must inherit proper ty "item" with the proper type (0)
126 PASS NodeList interface: calling item(unsigned long) on document.querySelectorAl l("script") with too few arguments must throw TypeError
127 PASS NodeList interface: document.querySelectorAll("script") must inherit proper ty "length" with the proper type (1)
128 PASS HTMLCollection interface: existence and properties of interface object
129 PASS HTMLCollection interface object length
130 PASS HTMLCollection interface object name
131 FAIL HTMLCollection interface: existence and properties of interface prototype o bject assert_equals: class string of HTMLCollection.prototype expected "[object HTMLCollectionPrototype]" but got "[object HTMLCollection]"
132 PASS HTMLCollection interface: existence and properties of interface prototype o bject's "constructor" property
133 PASS HTMLCollection interface: attribute length
134 PASS HTMLCollection interface: operation item(unsigned long)
135 PASS HTMLCollection interface: operation namedItem(DOMString)
136 PASS HTMLCollection must be primary interface of document.body.children
137 PASS Stringification of document.body.children
138 PASS HTMLCollection interface: document.body.children must inherit property "len gth" with the proper type (0)
139 PASS HTMLCollection interface: document.body.children must inherit property "ite m" with the proper type (1)
140 PASS HTMLCollection interface: calling item(unsigned long) on document.body.chil dren with too few arguments must throw TypeError
141 PASS HTMLCollection interface: document.body.children must inherit property "nam edItem" with the proper type (2)
142 PASS HTMLCollection interface: calling namedItem(DOMString) on document.body.chi ldren with too few arguments must throw TypeError
143 PASS MutationObserver interface: existence and properties of interface object
144 PASS MutationObserver interface object length
145 PASS MutationObserver interface object name
146 FAIL MutationObserver interface: existence and properties of interface prototype object assert_equals: class string of MutationObserver.prototype expected "[obj ect MutationObserverPrototype]" but got "[object MutationObserver]"
147 PASS MutationObserver interface: existence and properties of interface prototype object's "constructor" property
148 PASS MutationObserver interface: operation observe(Node,MutationObserverInit)
149 PASS MutationObserver interface: operation disconnect()
150 PASS MutationObserver interface: operation takeRecords()
151 PASS MutationRecord interface: existence and properties of interface object
152 PASS MutationRecord interface object length
153 PASS MutationRecord interface object name
154 FAIL MutationRecord interface: existence and properties of interface prototype o bject assert_equals: class string of MutationRecord.prototype expected "[object MutationRecordPrototype]" but got "[object MutationRecord]"
155 PASS MutationRecord interface: existence and properties of interface prototype o bject's "constructor" property
156 PASS MutationRecord interface: attribute type
157 PASS MutationRecord interface: attribute target
158 PASS MutationRecord interface: attribute addedNodes
159 PASS MutationRecord interface: attribute removedNodes
160 PASS MutationRecord interface: attribute previousSibling
161 PASS MutationRecord interface: attribute nextSibling
162 PASS MutationRecord interface: attribute attributeName
163 PASS MutationRecord interface: attribute attributeNamespace
164 PASS MutationRecord interface: attribute oldValue
165 PASS Node interface: existence and properties of interface object
166 PASS Node interface object length
167 PASS Node interface object name
168 FAIL Node interface: existence and properties of interface prototype object asse rt_equals: class string of Node.prototype expected "[object NodePrototype]" but got "[object Node]"
169 PASS Node interface: existence and properties of interface prototype object's "c onstructor" property
170 PASS Node interface: constant ELEMENT_NODE on interface object
171 PASS Node interface: constant ELEMENT_NODE on interface prototype object
172 PASS Node interface: constant ATTRIBUTE_NODE on interface object
173 PASS Node interface: constant ATTRIBUTE_NODE on interface prototype object
174 PASS Node interface: constant TEXT_NODE on interface object
175 PASS Node interface: constant TEXT_NODE on interface prototype object
176 PASS Node interface: constant CDATA_SECTION_NODE on interface object
177 PASS Node interface: constant CDATA_SECTION_NODE on interface prototype object
178 PASS Node interface: constant ENTITY_REFERENCE_NODE on interface object
179 PASS Node interface: constant ENTITY_REFERENCE_NODE on interface prototype objec t
180 PASS Node interface: constant ENTITY_NODE on interface object
181 PASS Node interface: constant ENTITY_NODE on interface prototype object
182 PASS Node interface: constant PROCESSING_INSTRUCTION_NODE on interface object
183 PASS Node interface: constant PROCESSING_INSTRUCTION_NODE on interface prototype object
184 PASS Node interface: constant COMMENT_NODE on interface object
185 PASS Node interface: constant COMMENT_NODE on interface prototype object
186 PASS Node interface: constant DOCUMENT_NODE on interface object
187 PASS Node interface: constant DOCUMENT_NODE on interface prototype object
188 PASS Node interface: constant DOCUMENT_TYPE_NODE on interface object
189 PASS Node interface: constant DOCUMENT_TYPE_NODE on interface prototype object
190 PASS Node interface: constant DOCUMENT_FRAGMENT_NODE on interface object
191 PASS Node interface: constant DOCUMENT_FRAGMENT_NODE on interface prototype obje ct
192 PASS Node interface: constant NOTATION_NODE on interface object
193 PASS Node interface: constant NOTATION_NODE on interface prototype object
194 PASS Node interface: attribute nodeType
195 PASS Node interface: attribute nodeName
196 PASS Node interface: attribute baseURI
197 PASS Node interface: attribute isConnected
198 PASS Node interface: attribute ownerDocument
199 PASS Node interface: attribute rootNode
200 PASS Node interface: attribute parentNode
201 PASS Node interface: attribute parentElement
202 PASS Node interface: operation hasChildNodes()
203 PASS Node interface: attribute childNodes
204 PASS Node interface: attribute firstChild
205 PASS Node interface: attribute lastChild
206 PASS Node interface: attribute previousSibling
207 PASS Node interface: attribute nextSibling
208 PASS Node interface: attribute nodeValue
209 PASS Node interface: attribute textContent
210 PASS Node interface: operation normalize()
211 PASS Node interface: operation cloneNode(boolean)
212 PASS Node interface: operation isEqualNode(Node)
213 PASS Node interface: operation isSameNode(Node)
214 PASS Node interface: constant DOCUMENT_POSITION_DISCONNECTED on interface object
215 PASS Node interface: constant DOCUMENT_POSITION_DISCONNECTED on interface protot ype object
216 PASS Node interface: constant DOCUMENT_POSITION_PRECEDING on interface object
217 PASS Node interface: constant DOCUMENT_POSITION_PRECEDING on interface prototype object
218 PASS Node interface: constant DOCUMENT_POSITION_FOLLOWING on interface object
219 PASS Node interface: constant DOCUMENT_POSITION_FOLLOWING on interface prototype object
220 PASS Node interface: constant DOCUMENT_POSITION_CONTAINS on interface object
221 PASS Node interface: constant DOCUMENT_POSITION_CONTAINS on interface prototype object
222 PASS Node interface: constant DOCUMENT_POSITION_CONTAINED_BY on interface object
223 PASS Node interface: constant DOCUMENT_POSITION_CONTAINED_BY on interface protot ype object
224 PASS Node interface: constant DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC on inter face object
225 PASS Node interface: constant DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC on inter face prototype object
226 PASS Node interface: operation compareDocumentPosition(Node)
227 PASS Node interface: operation contains(Node)
228 PASS Node interface: operation lookupPrefix(DOMString)
229 PASS Node interface: operation lookupNamespaceURI(DOMString)
230 PASS Node interface: operation isDefaultNamespace(DOMString)
231 PASS Node interface: operation insertBefore(Node,Node)
232 PASS Node interface: operation appendChild(Node)
233 PASS Node interface: operation replaceChild(Node,Node)
234 PASS Node interface: operation removeChild(Node)
235 PASS Document interface: existence and properties of interface object
236 PASS Document interface object length
237 PASS Document interface object name
238 FAIL Document interface: existence and properties of interface prototype object assert_equals: class string of Document.prototype expected "[object DocumentProt otype]" but got "[object Document]"
239 PASS Document interface: existence and properties of interface prototype object' s "constructor" property
240 PASS Document interface: attribute implementation
241 PASS Document interface: attribute URL
242 PASS Document interface: attribute documentURI
243 PASS Document interface: attribute origin
244 PASS Document interface: attribute compatMode
245 PASS Document interface: attribute characterSet
246 PASS Document interface: attribute charset
247 PASS Document interface: attribute inputEncoding
248 PASS Document interface: attribute contentType
249 PASS Document interface: attribute doctype
250 PASS Document interface: attribute documentElement
251 PASS Document interface: operation getElementsByTagName(DOMString)
252 PASS Document interface: operation getElementsByTagNameNS(DOMString,DOMString)
253 PASS Document interface: operation getElementsByClassName(DOMString)
254 PASS Document interface: operation createElement(DOMString,ElementCreationOption s)
255 PASS Document interface: operation createElementNS(DOMString,DOMString,ElementCr eationOptions)
256 PASS Document interface: operation createDocumentFragment()
257 PASS Document interface: operation createTextNode(DOMString)
258 PASS Document interface: operation createComment(DOMString)
259 PASS Document interface: operation createProcessingInstruction(DOMString,DOMStri ng)
260 PASS Document interface: operation importNode(Node,boolean)
261 PASS Document interface: operation adoptNode(Node)
262 PASS Document interface: operation createAttribute(DOMString)
263 PASS Document interface: operation createAttributeNS(DOMString,DOMString)
264 PASS Document interface: operation createEvent(DOMString)
265 PASS Document interface: operation createRange()
266 PASS Document interface: operation createNodeIterator(Node,unsigned long,NodeFil ter)
267 PASS Document interface: operation createTreeWalker(Node,unsigned long,NodeFilte r)
268 PASS Document interface: operation getElementById(DOMString)
269 PASS Document interface: attribute children
270 PASS Document interface: attribute firstElementChild
271 PASS Document interface: attribute lastElementChild
272 PASS Document interface: attribute childElementCount
273 PASS Document interface: operation prepend([object Object],[object Object])
274 PASS Document interface: operation append([object Object],[object Object])
275 PASS Document interface: operation querySelector(DOMString)
276 PASS Document interface: operation querySelectorAll(DOMString)
277 FAIL Document must be primary interface of new Document() assert_equals: Unexpec ted exception when evaluating object expected null but got object "TypeError: Il legal constructor"
278 FAIL Stringification of new Document() assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
279 FAIL Document interface: new Document() must inherit property "implementation" w ith the proper type (0) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
280 FAIL Document interface: new Document() must inherit property "URL" with the pro per type (1) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
281 FAIL Document interface: new Document() must inherit property "documentURI" with the proper type (2) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
282 FAIL Document interface: new Document() must inherit property "origin" with the proper type (3) assert_equals: Unexpected exception when evaluating object expec ted null but got object "TypeError: Illegal constructor"
283 FAIL Document interface: new Document() must inherit property "compatMode" with the proper type (4) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
284 FAIL Document interface: new Document() must inherit property "characterSet" wit h the proper type (5) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
285 FAIL Document interface: new Document() must inherit property "charset" with the proper type (6) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
286 FAIL Document interface: new Document() must inherit property "inputEncoding" wi th the proper type (7) assert_equals: Unexpected exception when evaluating objec t expected null but got object "TypeError: Illegal constructor"
287 FAIL Document interface: new Document() must inherit property "contentType" with the proper type (8) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
288 FAIL Document interface: new Document() must inherit property "doctype" with the proper type (9) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
289 FAIL Document interface: new Document() must inherit property "documentElement" with the proper type (10) assert_equals: Unexpected exception when evaluating ob ject expected null but got object "TypeError: Illegal constructor"
290 FAIL Document interface: new Document() must inherit property "getElementsByTagN ame" with the proper type (11) assert_equals: Unexpected exception when evaluati ng object expected null but got object "TypeError: Illegal constructor"
291 FAIL Document interface: calling getElementsByTagName(DOMString) on new Document () with too few arguments must throw TypeError assert_equals: Unexpected excepti on when evaluating object expected null but got object "TypeError: Illegal const ructor"
292 FAIL Document interface: new Document() must inherit property "getElementsByTagN ameNS" with the proper type (12) assert_equals: Unexpected exception when evalua ting object expected null but got object "TypeError: Illegal constructor"
293 FAIL Document interface: calling getElementsByTagNameNS(DOMString,DOMString) on new Document() with too few arguments must throw TypeError assert_equals: Unexpe cted exception when evaluating object expected null but got object "TypeError: I llegal constructor"
294 FAIL Document interface: new Document() must inherit property "getElementsByClas sName" with the proper type (13) assert_equals: Unexpected exception when evalua ting object expected null but got object "TypeError: Illegal constructor"
295 FAIL Document interface: calling getElementsByClassName(DOMString) on new Docume nt() with too few arguments must throw TypeError assert_equals: Unexpected excep tion when evaluating object expected null but got object "TypeError: Illegal con structor"
296 FAIL Document interface: new Document() must inherit property "createElement" wi th the proper type (14) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
297 FAIL Document interface: calling createElement(DOMString,ElementCreationOptions) on new Document() with too few arguments must throw TypeError assert_equals: Un expected exception when evaluating object expected null but got object "TypeErro r: Illegal constructor"
298 FAIL Document interface: new Document() must inherit property "createElementNS" with the proper type (15) assert_equals: Unexpected exception when evaluating ob ject expected null but got object "TypeError: Illegal constructor"
299 FAIL Document interface: calling createElementNS(DOMString,DOMString,ElementCrea tionOptions) on new Document() with too few arguments must throw TypeError asser t_equals: Unexpected exception when evaluating object expected null but got obje ct "TypeError: Illegal constructor"
300 FAIL Document interface: new Document() must inherit property "createDocumentFra gment" with the proper type (16) assert_equals: Unexpected exception when evalua ting object expected null but got object "TypeError: Illegal constructor"
301 FAIL Document interface: new Document() must inherit property "createTextNode" w ith the proper type (17) assert_equals: Unexpected exception when evaluating obj ect expected null but got object "TypeError: Illegal constructor"
302 FAIL Document interface: calling createTextNode(DOMString) on new Document() wit h too few arguments must throw TypeError assert_equals: Unexpected exception whe n evaluating object expected null but got object "TypeError: Illegal constructor "
303 FAIL Document interface: new Document() must inherit property "createComment" wi th the proper type (18) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
304 FAIL Document interface: calling createComment(DOMString) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
305 FAIL Document interface: new Document() must inherit property "createProcessingI nstruction" with the proper type (19) assert_equals: Unexpected exception when e valuating object expected null but got object "TypeError: Illegal constructor"
306 FAIL Document interface: calling createProcessingInstruction(DOMString,DOMString ) on new Document() with too few arguments must throw TypeError assert_equals: U nexpected exception when evaluating object expected null but got object "TypeErr or: Illegal constructor"
307 FAIL Document interface: new Document() must inherit property "importNode" with the proper type (20) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
308 FAIL Document interface: calling importNode(Node,boolean) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
309 FAIL Document interface: new Document() must inherit property "adoptNode" with t he proper type (21) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
310 FAIL Document interface: calling adoptNode(Node) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluati ng object expected null but got object "TypeError: Illegal constructor"
311 FAIL Document interface: new Document() must inherit property "createAttribute" with the proper type (22) assert_equals: Unexpected exception when evaluating ob ject expected null but got object "TypeError: Illegal constructor"
312 FAIL Document interface: calling createAttribute(DOMString) on new Document() wi th too few arguments must throw TypeError assert_equals: Unexpected exception wh en evaluating object expected null but got object "TypeError: Illegal constructo r"
313 FAIL Document interface: new Document() must inherit property "createAttributeNS " with the proper type (23) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
314 FAIL Document interface: calling createAttributeNS(DOMString,DOMString) on new D ocument() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illega l constructor"
315 FAIL Document interface: new Document() must inherit property "createEvent" with the proper type (24) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
316 FAIL Document interface: calling createEvent(DOMString) on new Document() with t oo few arguments must throw TypeError assert_equals: Unexpected exception when e valuating object expected null but got object "TypeError: Illegal constructor"
317 FAIL Document interface: new Document() must inherit property "createRange" with the proper type (25) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
318 FAIL Document interface: new Document() must inherit property "createNodeIterato r" with the proper type (26) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
319 FAIL Document interface: calling createNodeIterator(Node,unsigned long,NodeFilte r) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeEr ror: Illegal constructor"
320 FAIL Document interface: new Document() must inherit property "createTreeWalker" with the proper type (27) assert_equals: Unexpected exception when evaluating o bject expected null but got object "TypeError: Illegal constructor"
321 FAIL Document interface: calling createTreeWalker(Node,unsigned long,NodeFilter) on new Document() with too few arguments must throw TypeError assert_equals: Un expected exception when evaluating object expected null but got object "TypeErro r: Illegal constructor"
322 FAIL Document interface: new Document() must inherit property "getElementById" w ith the proper type (28) assert_equals: Unexpected exception when evaluating obj ect expected null but got object "TypeError: Illegal constructor"
323 FAIL Document interface: calling getElementById(DOMString) on new Document() wit h too few arguments must throw TypeError assert_equals: Unexpected exception whe n evaluating object expected null but got object "TypeError: Illegal constructor "
324 FAIL Document interface: new Document() must inherit property "children" with th e proper type (29) assert_equals: Unexpected exception when evaluating object ex pected null but got object "TypeError: Illegal constructor"
325 FAIL Document interface: new Document() must inherit property "firstElementChild " with the proper type (30) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
326 FAIL Document interface: new Document() must inherit property "lastElementChild" with the proper type (31) assert_equals: Unexpected exception when evaluating o bject expected null but got object "TypeError: Illegal constructor"
327 FAIL Document interface: new Document() must inherit property "childElementCount " with the proper type (32) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
328 FAIL Document interface: new Document() must inherit property "prepend" with the proper type (33) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
329 FAIL Document interface: calling prepend([object Object],[object Object]) on new Document() with too few arguments must throw TypeError assert_equals: Unexpecte d exception when evaluating object expected null but got object "TypeError: Ille gal constructor"
330 FAIL Document interface: new Document() must inherit property "append" with the proper type (34) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
331 FAIL Document interface: calling append([object Object],[object Object]) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illeg al constructor"
332 FAIL Document interface: new Document() must inherit property "querySelector" wi th the proper type (35) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
333 FAIL Document interface: calling querySelector(DOMString) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
334 FAIL Document interface: new Document() must inherit property "querySelectorAll" with the proper type (36) assert_equals: Unexpected exception when evaluating o bject expected null but got object "TypeError: Illegal constructor"
335 FAIL Document interface: calling querySelectorAll(DOMString) on new Document() w ith too few arguments must throw TypeError assert_equals: Unexpected exception w hen evaluating object expected null but got object "TypeError: Illegal construct or"
336 FAIL Node interface: new Document() must inherit property "ELEMENT_NODE" with th e proper type (0) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
337 FAIL Node interface: new Document() must inherit property "ATTRIBUTE_NODE" with the proper type (1) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
338 FAIL Node interface: new Document() must inherit property "TEXT_NODE" with the p roper type (2) assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
339 FAIL Node interface: new Document() must inherit property "CDATA_SECTION_NODE" w ith the proper type (3) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
340 FAIL Node interface: new Document() must inherit property "ENTITY_REFERENCE_NODE " with the proper type (4) assert_equals: Unexpected exception when evaluating o bject expected null but got object "TypeError: Illegal constructor"
341 FAIL Node interface: new Document() must inherit property "ENTITY_NODE" with the proper type (5) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
342 FAIL Node interface: new Document() must inherit property "PROCESSING_INSTRUCTIO N_NODE" with the proper type (6) assert_equals: Unexpected exception when evalua ting object expected null but got object "TypeError: Illegal constructor"
343 FAIL Node interface: new Document() must inherit property "COMMENT_NODE" with th e proper type (7) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
344 FAIL Node interface: new Document() must inherit property "DOCUMENT_NODE" with t he proper type (8) assert_equals: Unexpected exception when evaluating object ex pected null but got object "TypeError: Illegal constructor"
345 FAIL Node interface: new Document() must inherit property "DOCUMENT_TYPE_NODE" w ith the proper type (9) assert_equals: Unexpected exception when evaluating obje ct expected null but got object "TypeError: Illegal constructor"
346 FAIL Node interface: new Document() must inherit property "DOCUMENT_FRAGMENT_NOD E" with the proper type (10) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
347 FAIL Node interface: new Document() must inherit property "NOTATION_NODE" with t he proper type (11) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
348 FAIL Node interface: new Document() must inherit property "nodeType" with the pr oper type (12) assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
349 FAIL Node interface: new Document() must inherit property "nodeName" with the pr oper type (13) assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
350 FAIL Node interface: new Document() must inherit property "baseURI" with the pro per type (14) assert_equals: Unexpected exception when evaluating object expecte d null but got object "TypeError: Illegal constructor"
351 FAIL Node interface: new Document() must inherit property "isConnected" with the proper type (15) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
352 FAIL Node interface: new Document() must inherit property "ownerDocument" with t he proper type (16) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
353 FAIL Node interface: new Document() must inherit property "rootNode" with the pr oper type (17) assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
354 FAIL Node interface: new Document() must inherit property "parentNode" with the proper type (18) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
355 FAIL Node interface: new Document() must inherit property "parentElement" with t he proper type (19) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
356 FAIL Node interface: new Document() must inherit property "hasChildNodes" with t he proper type (20) assert_equals: Unexpected exception when evaluating object e xpected null but got object "TypeError: Illegal constructor"
357 FAIL Node interface: new Document() must inherit property "childNodes" with the proper type (21) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
358 FAIL Node interface: new Document() must inherit property "firstChild" with the proper type (22) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
359 FAIL Node interface: new Document() must inherit property "lastChild" with the p roper type (23) assert_equals: Unexpected exception when evaluating object expec ted null but got object "TypeError: Illegal constructor"
360 FAIL Node interface: new Document() must inherit property "previousSibling" with the proper type (24) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
361 FAIL Node interface: new Document() must inherit property "nextSibling" with the proper type (25) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
362 FAIL Node interface: new Document() must inherit property "nodeValue" with the p roper type (26) assert_equals: Unexpected exception when evaluating object expec ted null but got object "TypeError: Illegal constructor"
363 FAIL Node interface: new Document() must inherit property "textContent" with the proper type (27) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
364 FAIL Node interface: new Document() must inherit property "normalize" with the p roper type (28) assert_equals: Unexpected exception when evaluating object expec ted null but got object "TypeError: Illegal constructor"
365 FAIL Node interface: new Document() must inherit property "cloneNode" with the p roper type (29) assert_equals: Unexpected exception when evaluating object expec ted null but got object "TypeError: Illegal constructor"
366 FAIL Node interface: calling cloneNode(boolean) on new Document() with too few a rguments must throw TypeError assert_equals: Unexpected exception when evaluatin g object expected null but got object "TypeError: Illegal constructor"
367 FAIL Node interface: new Document() must inherit property "isEqualNode" with the proper type (30) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
368 FAIL Node interface: calling isEqualNode(Node) on new Document() with too few ar guments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
369 FAIL Node interface: new Document() must inherit property "isSameNode" with the proper type (31) assert_equals: Unexpected exception when evaluating object expe cted null but got object "TypeError: Illegal constructor"
370 FAIL Node interface: calling isSameNode(Node) on new Document() with too few arg uments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
371 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_DIS CONNECTED" with the proper type (32) assert_equals: Unexpected exception when ev aluating object expected null but got object "TypeError: Illegal constructor"
372 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_PRE CEDING" with the proper type (33) assert_equals: Unexpected exception when evalu ating object expected null but got object "TypeError: Illegal constructor"
373 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_FOL LOWING" with the proper type (34) assert_equals: Unexpected exception when evalu ating object expected null but got object "TypeError: Illegal constructor"
374 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_CON TAINS" with the proper type (35) assert_equals: Unexpected exception when evalua ting object expected null but got object "TypeError: Illegal constructor"
375 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_CON TAINED_BY" with the proper type (36) assert_equals: Unexpected exception when ev aluating object expected null but got object "TypeError: Illegal constructor"
376 FAIL Node interface: new Document() must inherit property "DOCUMENT_POSITION_IMP LEMENTATION_SPECIFIC" with the proper type (37) assert_equals: Unexpected except ion when evaluating object expected null but got object "TypeError: Illegal cons tructor"
377 FAIL Node interface: new Document() must inherit property "compareDocumentPositi on" with the proper type (38) assert_equals: Unexpected exception when evaluatin g object expected null but got object "TypeError: Illegal constructor"
378 FAIL Node interface: calling compareDocumentPosition(Node) on new Document() wit h too few arguments must throw TypeError assert_equals: Unexpected exception whe n evaluating object expected null but got object "TypeError: Illegal constructor "
379 FAIL Node interface: new Document() must inherit property "contains" with the pr oper type (39) assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
380 FAIL Node interface: calling contains(Node) on new Document() with too few argum ents must throw TypeError assert_equals: Unexpected exception when evaluating ob ject expected null but got object "TypeError: Illegal constructor"
381 FAIL Node interface: new Document() must inherit property "lookupPrefix" with th e proper type (40) assert_equals: Unexpected exception when evaluating object ex pected null but got object "TypeError: Illegal constructor"
382 FAIL Node interface: calling lookupPrefix(DOMString) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when eval uating object expected null but got object "TypeError: Illegal constructor"
383 FAIL Node interface: new Document() must inherit property "lookupNamespaceURI" w ith the proper type (41) assert_equals: Unexpected exception when evaluating obj ect expected null but got object "TypeError: Illegal constructor"
384 FAIL Node interface: calling lookupNamespaceURI(DOMString) on new Document() wit h too few arguments must throw TypeError assert_equals: Unexpected exception whe n evaluating object expected null but got object "TypeError: Illegal constructor "
385 FAIL Node interface: new Document() must inherit property "isDefaultNamespace" w ith the proper type (42) assert_equals: Unexpected exception when evaluating obj ect expected null but got object "TypeError: Illegal constructor"
386 FAIL Node interface: calling isDefaultNamespace(DOMString) on new Document() wit h too few arguments must throw TypeError assert_equals: Unexpected exception whe n evaluating object expected null but got object "TypeError: Illegal constructor "
387 FAIL Node interface: new Document() must inherit property "insertBefore" with th e proper type (43) assert_equals: Unexpected exception when evaluating object ex pected null but got object "TypeError: Illegal constructor"
388 FAIL Node interface: calling insertBefore(Node,Node) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when eval uating object expected null but got object "TypeError: Illegal constructor"
389 FAIL Node interface: new Document() must inherit property "appendChild" with the proper type (44) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
390 FAIL Node interface: calling appendChild(Node) on new Document() with too few ar guments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
391 FAIL Node interface: new Document() must inherit property "replaceChild" with th e proper type (45) assert_equals: Unexpected exception when evaluating object ex pected null but got object "TypeError: Illegal constructor"
392 FAIL Node interface: calling replaceChild(Node,Node) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when eval uating object expected null but got object "TypeError: Illegal constructor"
393 FAIL Node interface: new Document() must inherit property "removeChild" with the proper type (46) assert_equals: Unexpected exception when evaluating object exp ected null but got object "TypeError: Illegal constructor"
394 FAIL Node interface: calling removeChild(Node) on new Document() with too few ar guments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
395 FAIL EventTarget interface: new Document() must inherit property "addEventListen er" with the proper type (0) assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
396 FAIL EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on new Document() with too few arguments must thro w TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
397 FAIL EventTarget interface: new Document() must inherit property "removeEventLis tener" with the proper type (1) assert_equals: Unexpected exception when evaluat ing object expected null but got object "TypeError: Illegal constructor"
398 FAIL EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on new Document() with too few arguments must t hrow TypeError assert_equals: Unexpected exception when evaluating object expect ed null but got object "TypeError: Illegal constructor"
399 FAIL EventTarget interface: new Document() must inherit property "dispatchEvent" with the proper type (2) assert_equals: Unexpected exception when evaluating ob ject expected null but got object "TypeError: Illegal constructor"
400 FAIL EventTarget interface: calling dispatchEvent(Event) on new Document() with too few arguments must throw TypeError assert_equals: Unexpected exception when evaluating object expected null but got object "TypeError: Illegal constructor"
401 PASS XMLDocument interface: existence and properties of interface object
402 PASS XMLDocument interface object length
403 PASS XMLDocument interface object name
404 FAIL XMLDocument interface: existence and properties of interface prototype obje ct assert_equals: class string of XMLDocument.prototype expected "[object XMLDoc umentPrototype]" but got "[object XMLDocument]"
405 PASS XMLDocument interface: existence and properties of interface prototype obje ct's "constructor" property
406 PASS XMLDocument must be primary interface of xmlDoc
407 PASS Stringification of xmlDoc
408 PASS Document interface: xmlDoc must inherit property "implementation" with the proper type (0)
409 PASS Document interface: xmlDoc must inherit property "URL" with the proper type (1)
410 FAIL Document interface: xmlDoc must inherit property "documentURI" with the pro per type (2) assert_equals: expected "string" but got "object"
411 PASS Document interface: xmlDoc must inherit property "origin" with the proper t ype (3)
412 PASS Document interface: xmlDoc must inherit property "compatMode" with the prop er type (4)
413 PASS Document interface: xmlDoc must inherit property "characterSet" with the pr oper type (5)
414 PASS Document interface: xmlDoc must inherit property "charset" with the proper type (6)
415 PASS Document interface: xmlDoc must inherit property "inputEncoding" with the p roper type (7)
416 PASS Document interface: xmlDoc must inherit property "contentType" with the pro per type (8)
417 PASS Document interface: xmlDoc must inherit property "doctype" with the proper type (9)
418 PASS Document interface: xmlDoc must inherit property "documentElement" with the proper type (10)
419 PASS Document interface: xmlDoc must inherit property "getElementsByTagName" wit h the proper type (11)
420 PASS Document interface: calling getElementsByTagName(DOMString) on xmlDoc with too few arguments must throw TypeError
421 PASS Document interface: xmlDoc must inherit property "getElementsByTagNameNS" w ith the proper type (12)
422 PASS Document interface: calling getElementsByTagNameNS(DOMString,DOMString) on xmlDoc with too few arguments must throw TypeError
423 PASS Document interface: xmlDoc must inherit property "getElementsByClassName" w ith the proper type (13)
424 PASS Document interface: calling getElementsByClassName(DOMString) on xmlDoc wit h too few arguments must throw TypeError
425 PASS Document interface: xmlDoc must inherit property "createElement" with the p roper type (14)
426 PASS Document interface: calling createElement(DOMString,ElementCreationOptions) on xmlDoc with too few arguments must throw TypeError
427 PASS Document interface: xmlDoc must inherit property "createElementNS" with the proper type (15)
428 PASS Document interface: calling createElementNS(DOMString,DOMString,ElementCrea tionOptions) on xmlDoc with too few arguments must throw TypeError
429 PASS Document interface: xmlDoc must inherit property "createDocumentFragment" w ith the proper type (16)
430 PASS Document interface: xmlDoc must inherit property "createTextNode" with the proper type (17)
431 PASS Document interface: calling createTextNode(DOMString) on xmlDoc with too fe w arguments must throw TypeError
432 PASS Document interface: xmlDoc must inherit property "createComment" with the p roper type (18)
433 PASS Document interface: calling createComment(DOMString) on xmlDoc with too few arguments must throw TypeError
434 PASS Document interface: xmlDoc must inherit property "createProcessingInstructi on" with the proper type (19)
435 PASS Document interface: calling createProcessingInstruction(DOMString,DOMString ) on xmlDoc with too few arguments must throw TypeError
436 PASS Document interface: xmlDoc must inherit property "importNode" with the prop er type (20)
437 PASS Document interface: calling importNode(Node,boolean) on xmlDoc with too few arguments must throw TypeError
438 PASS Document interface: xmlDoc must inherit property "adoptNode" with the prope r type (21)
439 PASS Document interface: calling adoptNode(Node) on xmlDoc with too few argument s must throw TypeError
440 PASS Document interface: xmlDoc must inherit property "createAttribute" with the proper type (22)
441 PASS Document interface: calling createAttribute(DOMString) on xmlDoc with too f ew arguments must throw TypeError
442 PASS Document interface: xmlDoc must inherit property "createAttributeNS" with t he proper type (23)
443 PASS Document interface: calling createAttributeNS(DOMString,DOMString) on xmlDo c with too few arguments must throw TypeError
444 PASS Document interface: xmlDoc must inherit property "createEvent" with the pro per type (24)
445 PASS Document interface: calling createEvent(DOMString) on xmlDoc with too few a rguments must throw TypeError
446 PASS Document interface: xmlDoc must inherit property "createRange" with the pro per type (25)
447 PASS Document interface: xmlDoc must inherit property "createNodeIterator" with the proper type (26)
448 PASS Document interface: calling createNodeIterator(Node,unsigned long,NodeFilte r) on xmlDoc with too few arguments must throw TypeError
449 PASS Document interface: xmlDoc must inherit property "createTreeWalker" with th e proper type (27)
450 PASS Document interface: calling createTreeWalker(Node,unsigned long,NodeFilter) on xmlDoc with too few arguments must throw TypeError
451 PASS Document interface: xmlDoc must inherit property "getElementById" with the proper type (28)
452 PASS Document interface: calling getElementById(DOMString) on xmlDoc with too fe w arguments must throw TypeError
453 PASS Document interface: xmlDoc must inherit property "children" with the proper type (29)
454 PASS Document interface: xmlDoc must inherit property "firstElementChild" with t he proper type (30)
455 PASS Document interface: xmlDoc must inherit property "lastElementChild" with th e proper type (31)
456 PASS Document interface: xmlDoc must inherit property "childElementCount" with t he proper type (32)
457 PASS Document interface: xmlDoc must inherit property "prepend" with the proper type (33)
458 PASS Document interface: calling prepend([object Object],[object Object]) on xml Doc with too few arguments must throw TypeError
459 PASS Document interface: xmlDoc must inherit property "append" with the proper t ype (34)
460 PASS Document interface: calling append([object Object],[object Object]) on xmlD oc with too few arguments must throw TypeError
461 PASS Document interface: xmlDoc must inherit property "querySelector" with the p roper type (35)
462 PASS Document interface: calling querySelector(DOMString) on xmlDoc with too few arguments must throw TypeError
463 PASS Document interface: xmlDoc must inherit property "querySelectorAll" with th e proper type (36)
464 PASS Document interface: calling querySelectorAll(DOMString) on xmlDoc with too few arguments must throw TypeError
465 PASS Node interface: xmlDoc must inherit property "ELEMENT_NODE" with the proper type (0)
466 PASS Node interface: xmlDoc must inherit property "ATTRIBUTE_NODE" with the prop er type (1)
467 PASS Node interface: xmlDoc must inherit property "TEXT_NODE" with the proper ty pe (2)
468 PASS Node interface: xmlDoc must inherit property "CDATA_SECTION_NODE" with the proper type (3)
469 PASS Node interface: xmlDoc must inherit property "ENTITY_REFERENCE_NODE" with t he proper type (4)
470 PASS Node interface: xmlDoc must inherit property "ENTITY_NODE" with the proper type (5)
471 PASS Node interface: xmlDoc must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type (6)
472 PASS Node interface: xmlDoc must inherit property "COMMENT_NODE" with the proper type (7)
473 PASS Node interface: xmlDoc must inherit property "DOCUMENT_NODE" with the prope r type (8)
474 PASS Node interface: xmlDoc must inherit property "DOCUMENT_TYPE_NODE" with the proper type (9)
475 PASS Node interface: xmlDoc must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type (10)
476 PASS Node interface: xmlDoc must inherit property "NOTATION_NODE" with the prope r type (11)
477 PASS Node interface: xmlDoc must inherit property "nodeType" with the proper typ e (12)
478 PASS Node interface: xmlDoc must inherit property "nodeName" with the proper typ e (13)
479 FAIL Node interface: xmlDoc must inherit property "baseURI" with the proper type (14) assert_equals: expected "string" but got "object"
480 PASS Node interface: xmlDoc must inherit property "isConnected" with the proper type (15)
481 PASS Node interface: xmlDoc must inherit property "ownerDocument" with the prope r type (16)
482 PASS Node interface: xmlDoc must inherit property "rootNode" with the proper typ e (17)
483 PASS Node interface: xmlDoc must inherit property "parentNode" with the proper t ype (18)
484 PASS Node interface: xmlDoc must inherit property "parentElement" with the prope r type (19)
485 PASS Node interface: xmlDoc must inherit property "hasChildNodes" with the prope r type (20)
486 PASS Node interface: xmlDoc must inherit property "childNodes" with the proper t ype (21)
487 PASS Node interface: xmlDoc must inherit property "firstChild" with the proper t ype (22)
488 PASS Node interface: xmlDoc must inherit property "lastChild" with the proper ty pe (23)
489 PASS Node interface: xmlDoc must inherit property "previousSibling" with the pro per type (24)
490 PASS Node interface: xmlDoc must inherit property "nextSibling" with the proper type (25)
491 PASS Node interface: xmlDoc must inherit property "nodeValue" with the proper ty pe (26)
492 PASS Node interface: xmlDoc must inherit property "textContent" with the proper type (27)
493 PASS Node interface: xmlDoc must inherit property "normalize" with the proper ty pe (28)
494 PASS Node interface: xmlDoc must inherit property "cloneNode" with the proper ty pe (29)
495 PASS Node interface: calling cloneNode(boolean) on xmlDoc with too few arguments must throw TypeError
496 PASS Node interface: xmlDoc must inherit property "isEqualNode" with the proper type (30)
497 PASS Node interface: calling isEqualNode(Node) on xmlDoc with too few arguments must throw TypeError
498 PASS Node interface: xmlDoc must inherit property "isSameNode" with the proper t ype (31)
499 PASS Node interface: calling isSameNode(Node) on xmlDoc with too few arguments m ust throw TypeError
500 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_DISCONNECTE D" with the proper type (32)
501 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type (33)
502 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type (34)
503 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_CONTAINS" w ith the proper type (35)
504 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_CONTAINED_B Y" with the proper type (36)
505 PASS Node interface: xmlDoc must inherit property "DOCUMENT_POSITION_IMPLEMENTAT ION_SPECIFIC" with the proper type (37)
506 PASS Node interface: xmlDoc must inherit property "compareDocumentPosition" with the proper type (38)
507 PASS Node interface: calling compareDocumentPosition(Node) on xmlDoc with too fe w arguments must throw TypeError
508 PASS Node interface: xmlDoc must inherit property "contains" with the proper typ e (39)
509 PASS Node interface: calling contains(Node) on xmlDoc with too few arguments mus t throw TypeError
510 PASS Node interface: xmlDoc must inherit property "lookupPrefix" with the proper type (40)
511 PASS Node interface: calling lookupPrefix(DOMString) on xmlDoc with too few argu ments must throw TypeError
512 PASS Node interface: xmlDoc must inherit property "lookupNamespaceURI" with the proper type (41)
513 PASS Node interface: calling lookupNamespaceURI(DOMString) on xmlDoc with too fe w arguments must throw TypeError
514 PASS Node interface: xmlDoc must inherit property "isDefaultNamespace" with the proper type (42)
515 PASS Node interface: calling isDefaultNamespace(DOMString) on xmlDoc with too fe w arguments must throw TypeError
516 PASS Node interface: xmlDoc must inherit property "insertBefore" with the proper type (43)
517 PASS Node interface: calling insertBefore(Node,Node) on xmlDoc with too few argu ments must throw TypeError
518 PASS Node interface: xmlDoc must inherit property "appendChild" with the proper type (44)
519 PASS Node interface: calling appendChild(Node) on xmlDoc with too few arguments must throw TypeError
520 PASS Node interface: xmlDoc must inherit property "replaceChild" with the proper type (45)
521 PASS Node interface: calling replaceChild(Node,Node) on xmlDoc with too few argu ments must throw TypeError
522 PASS Node interface: xmlDoc must inherit property "removeChild" with the proper type (46)
523 PASS Node interface: calling removeChild(Node) on xmlDoc with too few arguments must throw TypeError
524 PASS EventTarget interface: xmlDoc must inherit property "addEventListener" with the proper type (0)
525 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on xmlDoc with too few arguments must throw TypeEr ror
526 PASS EventTarget interface: xmlDoc must inherit property "removeEventListener" w ith the proper type (1)
527 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on xmlDoc with too few arguments must throw Typ eError
528 PASS EventTarget interface: xmlDoc must inherit property "dispatchEvent" with th e proper type (2)
529 PASS EventTarget interface: calling dispatchEvent(Event) on xmlDoc with too few arguments must throw TypeError
530 PASS DOMImplementation interface: existence and properties of interface object
531 PASS DOMImplementation interface object length
532 PASS DOMImplementation interface object name
533 FAIL DOMImplementation interface: existence and properties of interface prototyp e object assert_equals: class string of DOMImplementation.prototype expected "[o bject DOMImplementationPrototype]" but got "[object DOMImplementation]"
534 PASS DOMImplementation interface: existence and properties of interface prototyp e object's "constructor" property
535 PASS DOMImplementation interface: operation createDocumentType(DOMString,DOMStri ng,DOMString)
536 PASS DOMImplementation interface: operation createDocument(DOMString,DOMString,D ocumentType)
537 PASS DOMImplementation interface: operation createHTMLDocument(DOMString)
538 PASS DOMImplementation interface: operation hasFeature()
539 PASS DOMImplementation must be primary interface of document.implementation
540 PASS Stringification of document.implementation
541 PASS DOMImplementation interface: document.implementation must inherit property "createDocumentType" with the proper type (0)
542 PASS DOMImplementation interface: calling createDocumentType(DOMString,DOMString ,DOMString) on document.implementation with too few arguments must throw TypeErr or
543 PASS DOMImplementation interface: document.implementation must inherit property "createDocument" with the proper type (1)
544 PASS DOMImplementation interface: calling createDocument(DOMString,DOMString,Doc umentType) on document.implementation with too few arguments must throw TypeErro r
545 PASS DOMImplementation interface: document.implementation must inherit property "createHTMLDocument" with the proper type (2)
546 PASS DOMImplementation interface: calling createHTMLDocument(DOMString) on docum ent.implementation with too few arguments must throw TypeError
547 PASS DOMImplementation interface: document.implementation must inherit property "hasFeature" with the proper type (3)
548 PASS DocumentType interface: existence and properties of interface object
549 PASS DocumentType interface object length
550 PASS DocumentType interface object name
551 FAIL DocumentType interface: existence and properties of interface prototype obj ect assert_equals: class string of DocumentType.prototype expected "[object Docu mentTypePrototype]" but got "[object DocumentType]"
552 PASS DocumentType interface: existence and properties of interface prototype obj ect's "constructor" property
553 PASS DocumentType interface: attribute name
554 PASS DocumentType interface: attribute publicId
555 PASS DocumentType interface: attribute systemId
556 PASS DocumentType interface: operation before([object Object],[object Object])
557 PASS DocumentType interface: operation after([object Object],[object Object])
558 PASS DocumentType interface: operation replaceWith([object Object],[object Objec t])
559 PASS DocumentType interface: operation remove()
560 PASS DocumentType must be primary interface of document.doctype
561 PASS Stringification of document.doctype
562 PASS DocumentType interface: document.doctype must inherit property "name" with the proper type (0)
563 PASS DocumentType interface: document.doctype must inherit property "publicId" w ith the proper type (1)
564 PASS DocumentType interface: document.doctype must inherit property "systemId" w ith the proper type (2)
565 PASS DocumentType interface: document.doctype must inherit property "before" wit h the proper type (3)
566 PASS DocumentType interface: calling before([object Object],[object Object]) on document.doctype with too few arguments must throw TypeError
567 PASS DocumentType interface: document.doctype must inherit property "after" with the proper type (4)
568 PASS DocumentType interface: calling after([object Object],[object Object]) on d ocument.doctype with too few arguments must throw TypeError
569 PASS DocumentType interface: document.doctype must inherit property "replaceWith " with the proper type (5)
570 PASS DocumentType interface: calling replaceWith([object Object],[object Object] ) on document.doctype with too few arguments must throw TypeError
571 PASS DocumentType interface: document.doctype must inherit property "remove" wit h the proper type (6)
572 PASS Node interface: document.doctype must inherit property "ELEMENT_NODE" with the proper type (0)
573 PASS Node interface: document.doctype must inherit property "ATTRIBUTE_NODE" wit h the proper type (1)
574 PASS Node interface: document.doctype must inherit property "TEXT_NODE" with the proper type (2)
575 PASS Node interface: document.doctype must inherit property "CDATA_SECTION_NODE" with the proper type (3)
576 PASS Node interface: document.doctype must inherit property "ENTITY_REFERENCE_NO DE" with the proper type (4)
577 PASS Node interface: document.doctype must inherit property "ENTITY_NODE" with t he proper type (5)
578 PASS Node interface: document.doctype must inherit property "PROCESSING_INSTRUCT ION_NODE" with the proper type (6)
579 PASS Node interface: document.doctype must inherit property "COMMENT_NODE" with the proper type (7)
580 PASS Node interface: document.doctype must inherit property "DOCUMENT_NODE" with the proper type (8)
581 PASS Node interface: document.doctype must inherit property "DOCUMENT_TYPE_NODE" with the proper type (9)
582 PASS Node interface: document.doctype must inherit property "DOCUMENT_FRAGMENT_N ODE" with the proper type (10)
583 PASS Node interface: document.doctype must inherit property "NOTATION_NODE" with the proper type (11)
584 PASS Node interface: document.doctype must inherit property "nodeType" with the proper type (12)
585 PASS Node interface: document.doctype must inherit property "nodeName" with the proper type (13)
586 PASS Node interface: document.doctype must inherit property "baseURI" with the p roper type (14)
587 PASS Node interface: document.doctype must inherit property "isConnected" with t he proper type (15)
588 PASS Node interface: document.doctype must inherit property "ownerDocument" with the proper type (16)
589 PASS Node interface: document.doctype must inherit property "rootNode" with the proper type (17)
590 PASS Node interface: document.doctype must inherit property "parentNode" with th e proper type (18)
591 PASS Node interface: document.doctype must inherit property "parentElement" with the proper type (19)
592 PASS Node interface: document.doctype must inherit property "hasChildNodes" with the proper type (20)
593 PASS Node interface: document.doctype must inherit property "childNodes" with th e proper type (21)
594 PASS Node interface: document.doctype must inherit property "firstChild" with th e proper type (22)
595 PASS Node interface: document.doctype must inherit property "lastChild" with the proper type (23)
596 PASS Node interface: document.doctype must inherit property "previousSibling" wi th the proper type (24)
597 PASS Node interface: document.doctype must inherit property "nextSibling" with t he proper type (25)
598 PASS Node interface: document.doctype must inherit property "nodeValue" with the proper type (26)
599 PASS Node interface: document.doctype must inherit property "textContent" with t he proper type (27)
600 PASS Node interface: document.doctype must inherit property "normalize" with the proper type (28)
601 PASS Node interface: document.doctype must inherit property "cloneNode" with the proper type (29)
602 PASS Node interface: calling cloneNode(boolean) on document.doctype with too few arguments must throw TypeError
603 PASS Node interface: document.doctype must inherit property "isEqualNode" with t he proper type (30)
604 PASS Node interface: calling isEqualNode(Node) on document.doctype with too few arguments must throw TypeError
605 PASS Node interface: document.doctype must inherit property "isSameNode" with th e proper type (31)
606 PASS Node interface: calling isSameNode(Node) on document.doctype with too few a rguments must throw TypeError
607 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_D ISCONNECTED" with the proper type (32)
608 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_P RECEDING" with the proper type (33)
609 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_F OLLOWING" with the proper type (34)
610 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_C ONTAINS" with the proper type (35)
611 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_C ONTAINED_BY" with the proper type (36)
612 PASS Node interface: document.doctype must inherit property "DOCUMENT_POSITION_I MPLEMENTATION_SPECIFIC" with the proper type (37)
613 PASS Node interface: document.doctype must inherit property "compareDocumentPosi tion" with the proper type (38)
614 PASS Node interface: calling compareDocumentPosition(Node) on document.doctype w ith too few arguments must throw TypeError
615 PASS Node interface: document.doctype must inherit property "contains" with the proper type (39)
616 PASS Node interface: calling contains(Node) on document.doctype with too few arg uments must throw TypeError
617 PASS Node interface: document.doctype must inherit property "lookupPrefix" with the proper type (40)
618 PASS Node interface: calling lookupPrefix(DOMString) on document.doctype with to o few arguments must throw TypeError
619 PASS Node interface: document.doctype must inherit property "lookupNamespaceURI" with the proper type (41)
620 PASS Node interface: calling lookupNamespaceURI(DOMString) on document.doctype w ith too few arguments must throw TypeError
621 PASS Node interface: document.doctype must inherit property "isDefaultNamespace" with the proper type (42)
622 PASS Node interface: calling isDefaultNamespace(DOMString) on document.doctype w ith too few arguments must throw TypeError
623 PASS Node interface: document.doctype must inherit property "insertBefore" with the proper type (43)
624 PASS Node interface: calling insertBefore(Node,Node) on document.doctype with to o few arguments must throw TypeError
625 PASS Node interface: document.doctype must inherit property "appendChild" with t he proper type (44)
626 PASS Node interface: calling appendChild(Node) on document.doctype with too few arguments must throw TypeError
627 PASS Node interface: document.doctype must inherit property "replaceChild" with the proper type (45)
628 PASS Node interface: calling replaceChild(Node,Node) on document.doctype with to o few arguments must throw TypeError
629 PASS Node interface: document.doctype must inherit property "removeChild" with t he proper type (46)
630 PASS Node interface: calling removeChild(Node) on document.doctype with too few arguments must throw TypeError
631 PASS EventTarget interface: document.doctype must inherit property "addEventList ener" with the proper type (0)
632 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on document.doctype with too few arguments must th row TypeError
633 PASS EventTarget interface: document.doctype must inherit property "removeEventL istener" with the proper type (1)
634 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on document.doctype with too few arguments must throw TypeError
635 PASS EventTarget interface: document.doctype must inherit property "dispatchEven t" with the proper type (2)
636 PASS EventTarget interface: calling dispatchEvent(Event) on document.doctype wit h too few arguments must throw TypeError
637 PASS DocumentFragment interface: existence and properties of interface object
638 PASS DocumentFragment interface object length
639 PASS DocumentFragment interface object name
640 FAIL DocumentFragment interface: existence and properties of interface prototype object assert_equals: class string of DocumentFragment.prototype expected "[obj ect DocumentFragmentPrototype]" but got "[object DocumentFragment]"
641 PASS DocumentFragment interface: existence and properties of interface prototype object's "constructor" property
642 PASS DocumentFragment interface: operation getElementById(DOMString)
643 PASS DocumentFragment interface: attribute children
644 PASS DocumentFragment interface: attribute firstElementChild
645 PASS DocumentFragment interface: attribute lastElementChild
646 PASS DocumentFragment interface: attribute childElementCount
647 PASS DocumentFragment interface: operation prepend([object Object],[object Objec t])
648 PASS DocumentFragment interface: operation append([object Object],[object Object ])
649 PASS DocumentFragment interface: operation querySelector(DOMString)
650 PASS DocumentFragment interface: operation querySelectorAll(DOMString)
651 PASS DocumentFragment must be primary interface of document.createDocumentFragme nt()
652 PASS Stringification of document.createDocumentFragment()
653 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "getElementById" with the proper type (0)
654 PASS DocumentFragment interface: calling getElementById(DOMString) on document.c reateDocumentFragment() with too few arguments must throw TypeError
655 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "children" with the proper type (1)
656 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "firstElementChild" with the proper type (2)
657 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "lastElementChild" with the proper type (3)
658 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "childElementCount" with the proper type (4)
659 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "prepend" with the proper type (5)
660 PASS DocumentFragment interface: calling prepend([object Object],[object Object] ) on document.createDocumentFragment() with too few arguments must throw TypeErr or
661 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "append" with the proper type (6)
662 PASS DocumentFragment interface: calling append([object Object],[object Object]) on document.createDocumentFragment() with too few arguments must throw TypeErro r
663 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "querySelector" with the proper type (7)
664 PASS DocumentFragment interface: calling querySelector(DOMString) on document.cr eateDocumentFragment() with too few arguments must throw TypeError
665 PASS DocumentFragment interface: document.createDocumentFragment() must inherit property "querySelectorAll" with the proper type (8)
666 PASS DocumentFragment interface: calling querySelectorAll(DOMString) on document .createDocumentFragment() with too few arguments must throw TypeError
667 PASS Node interface: document.createDocumentFragment() must inherit property "EL EMENT_NODE" with the proper type (0)
668 PASS Node interface: document.createDocumentFragment() must inherit property "AT TRIBUTE_NODE" with the proper type (1)
669 PASS Node interface: document.createDocumentFragment() must inherit property "TE XT_NODE" with the proper type (2)
670 PASS Node interface: document.createDocumentFragment() must inherit property "CD ATA_SECTION_NODE" with the proper type (3)
671 PASS Node interface: document.createDocumentFragment() must inherit property "EN TITY_REFERENCE_NODE" with the proper type (4)
672 PASS Node interface: document.createDocumentFragment() must inherit property "EN TITY_NODE" with the proper type (5)
673 PASS Node interface: document.createDocumentFragment() must inherit property "PR OCESSING_INSTRUCTION_NODE" with the proper type (6)
674 PASS Node interface: document.createDocumentFragment() must inherit property "CO MMENT_NODE" with the proper type (7)
675 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_NODE" with the proper type (8)
676 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_TYPE_NODE" with the proper type (9)
677 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_FRAGMENT_NODE" with the proper type (10)
678 PASS Node interface: document.createDocumentFragment() must inherit property "NO TATION_NODE" with the proper type (11)
679 PASS Node interface: document.createDocumentFragment() must inherit property "no deType" with the proper type (12)
680 PASS Node interface: document.createDocumentFragment() must inherit property "no deName" with the proper type (13)
681 PASS Node interface: document.createDocumentFragment() must inherit property "ba seURI" with the proper type (14)
682 PASS Node interface: document.createDocumentFragment() must inherit property "is Connected" with the proper type (15)
683 PASS Node interface: document.createDocumentFragment() must inherit property "ow nerDocument" with the proper type (16)
684 PASS Node interface: document.createDocumentFragment() must inherit property "ro otNode" with the proper type (17)
685 PASS Node interface: document.createDocumentFragment() must inherit property "pa rentNode" with the proper type (18)
686 PASS Node interface: document.createDocumentFragment() must inherit property "pa rentElement" with the proper type (19)
687 PASS Node interface: document.createDocumentFragment() must inherit property "ha sChildNodes" with the proper type (20)
688 PASS Node interface: document.createDocumentFragment() must inherit property "ch ildNodes" with the proper type (21)
689 PASS Node interface: document.createDocumentFragment() must inherit property "fi rstChild" with the proper type (22)
690 PASS Node interface: document.createDocumentFragment() must inherit property "la stChild" with the proper type (23)
691 PASS Node interface: document.createDocumentFragment() must inherit property "pr eviousSibling" with the proper type (24)
692 PASS Node interface: document.createDocumentFragment() must inherit property "ne xtSibling" with the proper type (25)
693 PASS Node interface: document.createDocumentFragment() must inherit property "no deValue" with the proper type (26)
694 PASS Node interface: document.createDocumentFragment() must inherit property "te xtContent" with the proper type (27)
695 PASS Node interface: document.createDocumentFragment() must inherit property "no rmalize" with the proper type (28)
696 PASS Node interface: document.createDocumentFragment() must inherit property "cl oneNode" with the proper type (29)
697 PASS Node interface: calling cloneNode(boolean) on document.createDocumentFragme nt() with too few arguments must throw TypeError
698 PASS Node interface: document.createDocumentFragment() must inherit property "is EqualNode" with the proper type (30)
699 PASS Node interface: calling isEqualNode(Node) on document.createDocumentFragmen t() with too few arguments must throw TypeError
700 PASS Node interface: document.createDocumentFragment() must inherit property "is SameNode" with the proper type (31)
701 PASS Node interface: calling isSameNode(Node) on document.createDocumentFragment () with too few arguments must throw TypeError
702 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_DISCONNECTED" with the proper type (32)
703 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_PRECEDING" with the proper type (33)
704 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_FOLLOWING" with the proper type (34)
705 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_CONTAINS" with the proper type (35)
706 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_CONTAINED_BY" with the proper type (36)
707 PASS Node interface: document.createDocumentFragment() must inherit property "DO CUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (37)
708 PASS Node interface: document.createDocumentFragment() must inherit property "co mpareDocumentPosition" with the proper type (38)
709 PASS Node interface: calling compareDocumentPosition(Node) on document.createDoc umentFragment() with too few arguments must throw TypeError
710 PASS Node interface: document.createDocumentFragment() must inherit property "co ntains" with the proper type (39)
711 PASS Node interface: calling contains(Node) on document.createDocumentFragment() with too few arguments must throw TypeError
712 PASS Node interface: document.createDocumentFragment() must inherit property "lo okupPrefix" with the proper type (40)
713 PASS Node interface: calling lookupPrefix(DOMString) on document.createDocumentF ragment() with too few arguments must throw TypeError
714 PASS Node interface: document.createDocumentFragment() must inherit property "lo okupNamespaceURI" with the proper type (41)
715 PASS Node interface: calling lookupNamespaceURI(DOMString) on document.createDoc umentFragment() with too few arguments must throw TypeError
716 PASS Node interface: document.createDocumentFragment() must inherit property "is DefaultNamespace" with the proper type (42)
717 PASS Node interface: calling isDefaultNamespace(DOMString) on document.createDoc umentFragment() with too few arguments must throw TypeError
718 PASS Node interface: document.createDocumentFragment() must inherit property "in sertBefore" with the proper type (43)
719 PASS Node interface: calling insertBefore(Node,Node) on document.createDocumentF ragment() with too few arguments must throw TypeError
720 PASS Node interface: document.createDocumentFragment() must inherit property "ap pendChild" with the proper type (44)
721 PASS Node interface: calling appendChild(Node) on document.createDocumentFragmen t() with too few arguments must throw TypeError
722 PASS Node interface: document.createDocumentFragment() must inherit property "re placeChild" with the proper type (45)
723 PASS Node interface: calling replaceChild(Node,Node) on document.createDocumentF ragment() with too few arguments must throw TypeError
724 PASS Node interface: document.createDocumentFragment() must inherit property "re moveChild" with the proper type (46)
725 PASS Node interface: calling removeChild(Node) on document.createDocumentFragmen t() with too few arguments must throw TypeError
726 PASS EventTarget interface: document.createDocumentFragment() must inherit prope rty "addEventListener" with the proper type (0)
727 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on document.createDocumentFragment() with too few arguments must throw TypeError
728 PASS EventTarget interface: document.createDocumentFragment() must inherit prope rty "removeEventListener" with the proper type (1)
729 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on document.createDocumentFragment() with too f ew arguments must throw TypeError
730 PASS EventTarget interface: document.createDocumentFragment() must inherit prope rty "dispatchEvent" with the proper type (2)
731 PASS EventTarget interface: calling dispatchEvent(Event) on document.createDocum entFragment() with too few arguments must throw TypeError
732 PASS ShadowRoot interface: existence and properties of interface object
733 PASS ShadowRoot interface object length
734 PASS ShadowRoot interface object name
735 FAIL ShadowRoot interface: existence and properties of interface prototype objec t assert_equals: class string of ShadowRoot.prototype expected "[object ShadowRo otPrototype]" but got "[object ShadowRoot]"
736 PASS ShadowRoot interface: existence and properties of interface prototype objec t's "constructor" property
737 PASS ShadowRoot interface: attribute mode
738 PASS ShadowRoot interface: attribute host
739 PASS Element interface: existence and properties of interface object
740 PASS Element interface object length
741 PASS Element interface object name
742 FAIL Element interface: existence and properties of interface prototype object a ssert_equals: class string of Element.prototype expected "[object ElementPrototy pe]" but got "[object Element]"
743 PASS Element interface: existence and properties of interface prototype object's "constructor" property
744 PASS Element interface: attribute namespaceURI
745 PASS Element interface: attribute prefix
746 PASS Element interface: attribute localName
747 PASS Element interface: attribute tagName
748 PASS Element interface: attribute id
749 PASS Element interface: attribute className
750 PASS Element interface: attribute classList
751 PASS Element interface: attribute slot
752 PASS Element interface: operation hasAttributes()
753 PASS Element interface: attribute attributes
754 FAIL Element interface: operation getAttributeNames() assert_own_property: inter face prototype object missing non-static operation expected property "getAttribu teNames" missing
755 PASS Element interface: operation getAttribute(DOMString)
756 PASS Element interface: operation getAttributeNS(DOMString,DOMString)
757 PASS Element interface: operation setAttribute(DOMString,DOMString)
758 PASS Element interface: operation setAttributeNS(DOMString,DOMString,DOMString)
759 PASS Element interface: operation removeAttribute(DOMString)
760 PASS Element interface: operation removeAttributeNS(DOMString,DOMString)
761 PASS Element interface: operation hasAttribute(DOMString)
762 PASS Element interface: operation hasAttributeNS(DOMString,DOMString)
763 PASS Element interface: operation getAttributeNode(DOMString)
764 PASS Element interface: operation getAttributeNodeNS(DOMString,DOMString)
765 PASS Element interface: operation setAttributeNode(Attr)
766 PASS Element interface: operation setAttributeNodeNS(Attr)
767 PASS Element interface: operation removeAttributeNode(Attr)
768 PASS Element interface: operation attachShadow(ShadowRootInit)
769 PASS Element interface: attribute shadowRoot
770 PASS Element interface: operation closest(DOMString)
771 PASS Element interface: operation matches(DOMString)
772 PASS Element interface: operation webkitMatchesSelector(DOMString)
773 PASS Element interface: operation getElementsByTagName(DOMString)
774 PASS Element interface: operation getElementsByTagNameNS(DOMString,DOMString)
775 PASS Element interface: operation getElementsByClassName(DOMString)
776 PASS Element interface: operation insertAdjacentElement(DOMString,Element)
777 PASS Element interface: operation insertAdjacentText(DOMString,DOMString)
778 PASS Element interface: attribute children
779 PASS Element interface: attribute firstElementChild
780 PASS Element interface: attribute lastElementChild
781 PASS Element interface: attribute childElementCount
782 PASS Element interface: operation prepend([object Object],[object Object])
783 PASS Element interface: operation append([object Object],[object Object])
784 PASS Element interface: operation querySelector(DOMString)
785 PASS Element interface: operation querySelectorAll(DOMString)
786 PASS Element interface: attribute previousElementSibling
787 PASS Element interface: attribute nextElementSibling
788 PASS Element interface: operation before([object Object],[object Object])
789 PASS Element interface: operation after([object Object],[object Object])
790 PASS Element interface: operation replaceWith([object Object],[object Object])
791 PASS Element interface: operation remove()
792 PASS Element interface: attribute assignedSlot
793 PASS Element must be primary interface of element
794 PASS Stringification of element
795 PASS Element interface: element must inherit property "namespaceURI" with the pr oper type (0)
796 PASS Element interface: element must inherit property "prefix" with the proper t ype (1)
797 PASS Element interface: element must inherit property "localName" with the prope r type (2)
798 PASS Element interface: element must inherit property "tagName" with the proper type (3)
799 PASS Element interface: element must inherit property "id" with the proper type (4)
800 PASS Element interface: element must inherit property "className" with the prope r type (5)
801 PASS Element interface: element must inherit property "classList" with the prope r type (6)
802 PASS Element interface: element must inherit property "slot" with the proper typ e (7)
803 PASS Element interface: element must inherit property "hasAttributes" with the p roper type (8)
804 PASS Element interface: element must inherit property "attributes" with the prop er type (9)
805 FAIL Element interface: element must inherit property "getAttributeNames" with t he proper type (10) assert_inherits: property "getAttributeNames" not found in p rototype chain
806 PASS Element interface: element must inherit property "getAttribute" with the pr oper type (11)
807 PASS Element interface: calling getAttribute(DOMString) on element with too few arguments must throw TypeError
808 PASS Element interface: element must inherit property "getAttributeNS" with the proper type (12)
809 PASS Element interface: calling getAttributeNS(DOMString,DOMString) on element w ith too few arguments must throw TypeError
810 PASS Element interface: element must inherit property "setAttribute" with the pr oper type (13)
811 PASS Element interface: calling setAttribute(DOMString,DOMString) on element wit h too few arguments must throw TypeError
812 PASS Element interface: element must inherit property "setAttributeNS" with the proper type (14)
813 PASS Element interface: calling setAttributeNS(DOMString,DOMString,DOMString) on element with too few arguments must throw TypeError
814 PASS Element interface: element must inherit property "removeAttribute" with the proper type (15)
815 PASS Element interface: calling removeAttribute(DOMString) on element with too f ew arguments must throw TypeError
816 PASS Element interface: element must inherit property "removeAttributeNS" with t he proper type (16)
817 PASS Element interface: calling removeAttributeNS(DOMString,DOMString) on elemen t with too few arguments must throw TypeError
818 PASS Element interface: element must inherit property "hasAttribute" with the pr oper type (17)
819 PASS Element interface: calling hasAttribute(DOMString) on element with too few arguments must throw TypeError
820 PASS Element interface: element must inherit property "hasAttributeNS" with the proper type (18)
821 PASS Element interface: calling hasAttributeNS(DOMString,DOMString) on element w ith too few arguments must throw TypeError
822 PASS Element interface: element must inherit property "getAttributeNode" with th e proper type (19)
823 PASS Element interface: calling getAttributeNode(DOMString) on element with too few arguments must throw TypeError
824 PASS Element interface: element must inherit property "getAttributeNodeNS" with the proper type (20)
825 PASS Element interface: calling getAttributeNodeNS(DOMString,DOMString) on eleme nt with too few arguments must throw TypeError
826 PASS Element interface: element must inherit property "setAttributeNode" with th e proper type (21)
827 PASS Element interface: calling setAttributeNode(Attr) on element with too few a rguments must throw TypeError
828 PASS Element interface: element must inherit property "setAttributeNodeNS" with the proper type (22)
829 PASS Element interface: calling setAttributeNodeNS(Attr) on element with too few arguments must throw TypeError
830 PASS Element interface: element must inherit property "removeAttributeNode" with the proper type (23)
831 PASS Element interface: calling removeAttributeNode(Attr) on element with too fe w arguments must throw TypeError
832 PASS Element interface: element must inherit property "attachShadow" with the pr oper type (24)
833 PASS Element interface: calling attachShadow(ShadowRootInit) on element with too few arguments must throw TypeError
834 PASS Element interface: element must inherit property "shadowRoot" with the prop er type (25)
835 PASS Element interface: element must inherit property "closest" with the proper type (26)
836 PASS Element interface: calling closest(DOMString) on element with too few argum ents must throw TypeError
837 PASS Element interface: element must inherit property "matches" with the proper type (27)
838 PASS Element interface: calling matches(DOMString) on element with too few argum ents must throw TypeError
839 PASS Element interface: element must inherit property "webkitMatchesSelector" wi th the proper type (28)
840 PASS Element interface: calling webkitMatchesSelector(DOMString) on element with too few arguments must throw TypeError
841 PASS Element interface: element must inherit property "getElementsByTagName" wit h the proper type (29)
842 PASS Element interface: calling getElementsByTagName(DOMString) on element with too few arguments must throw TypeError
843 PASS Element interface: element must inherit property "getElementsByTagNameNS" w ith the proper type (30)
844 PASS Element interface: calling getElementsByTagNameNS(DOMString,DOMString) on e lement with too few arguments must throw TypeError
845 PASS Element interface: element must inherit property "getElementsByClassName" w ith the proper type (31)
846 PASS Element interface: calling getElementsByClassName(DOMString) on element wit h too few arguments must throw TypeError
847 PASS Element interface: element must inherit property "insertAdjacentElement" wi th the proper type (32)
848 PASS Element interface: calling insertAdjacentElement(DOMString,Element) on elem ent with too few arguments must throw TypeError
849 PASS Element interface: element must inherit property "insertAdjacentText" with the proper type (33)
850 PASS Element interface: calling insertAdjacentText(DOMString,DOMString) on eleme nt with too few arguments must throw TypeError
851 PASS Element interface: element must inherit property "children" with the proper type (34)
852 PASS Element interface: element must inherit property "firstElementChild" with t he proper type (35)
853 PASS Element interface: element must inherit property "lastElementChild" with th e proper type (36)
854 PASS Element interface: element must inherit property "childElementCount" with t he proper type (37)
855 PASS Element interface: element must inherit property "prepend" with the proper type (38)
856 PASS Element interface: calling prepend([object Object],[object Object]) on elem ent with too few arguments must throw TypeError
857 PASS Element interface: element must inherit property "append" with the proper t ype (39)
858 PASS Element interface: calling append([object Object],[object Object]) on eleme nt with too few arguments must throw TypeError
859 PASS Element interface: element must inherit property "querySelector" with the p roper type (40)
860 PASS Element interface: calling querySelector(DOMString) on element with too few arguments must throw TypeError
861 PASS Element interface: element must inherit property "querySelectorAll" with th e proper type (41)
862 PASS Element interface: calling querySelectorAll(DOMString) on element with too few arguments must throw TypeError
863 PASS Element interface: element must inherit property "previousElementSibling" w ith the proper type (42)
864 PASS Element interface: element must inherit property "nextElementSibling" with the proper type (43)
865 PASS Element interface: element must inherit property "before" with the proper t ype (44)
866 PASS Element interface: calling before([object Object],[object Object]) on eleme nt with too few arguments must throw TypeError
867 PASS Element interface: element must inherit property "after" with the proper ty pe (45)
868 PASS Element interface: calling after([object Object],[object Object]) on elemen t with too few arguments must throw TypeError
869 PASS Element interface: element must inherit property "replaceWith" with the pro per type (46)
870 PASS Element interface: calling replaceWith([object Object],[object Object]) on element with too few arguments must throw TypeError
871 PASS Element interface: element must inherit property "remove" with the proper t ype (47)
872 PASS Element interface: element must inherit property "assignedSlot" with the pr oper type (48)
873 PASS Node interface: element must inherit property "ELEMENT_NODE" with the prope r type (0)
874 PASS Node interface: element must inherit property "ATTRIBUTE_NODE" with the pro per type (1)
875 PASS Node interface: element must inherit property "TEXT_NODE" with the proper t ype (2)
876 PASS Node interface: element must inherit property "CDATA_SECTION_NODE" with the proper type (3)
877 PASS Node interface: element must inherit property "ENTITY_REFERENCE_NODE" with the proper type (4)
878 PASS Node interface: element must inherit property "ENTITY_NODE" with the proper type (5)
879 PASS Node interface: element must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type (6)
880 PASS Node interface: element must inherit property "COMMENT_NODE" with the prope r type (7)
881 PASS Node interface: element must inherit property "DOCUMENT_NODE" with the prop er type (8)
882 PASS Node interface: element must inherit property "DOCUMENT_TYPE_NODE" with the proper type (9)
883 PASS Node interface: element must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type (10)
884 PASS Node interface: element must inherit property "NOTATION_NODE" with the prop er type (11)
885 PASS Node interface: element must inherit property "nodeType" with the proper ty pe (12)
886 PASS Node interface: element must inherit property "nodeName" with the proper ty pe (13)
887 FAIL Node interface: element must inherit property "baseURI" with the proper typ e (14) assert_equals: expected "string" but got "object"
888 PASS Node interface: element must inherit property "isConnected" with the proper type (15)
889 PASS Node interface: element must inherit property "ownerDocument" with the prop er type (16)
890 PASS Node interface: element must inherit property "rootNode" with the proper ty pe (17)
891 PASS Node interface: element must inherit property "parentNode" with the proper type (18)
892 PASS Node interface: element must inherit property "parentElement" with the prop er type (19)
893 PASS Node interface: element must inherit property "hasChildNodes" with the prop er type (20)
894 PASS Node interface: element must inherit property "childNodes" with the proper type (21)
895 PASS Node interface: element must inherit property "firstChild" with the proper type (22)
896 PASS Node interface: element must inherit property "lastChild" with the proper t ype (23)
897 PASS Node interface: element must inherit property "previousSibling" with the pr oper type (24)
898 PASS Node interface: element must inherit property "nextSibling" with the proper type (25)
899 PASS Node interface: element must inherit property "nodeValue" with the proper t ype (26)
900 PASS Node interface: element must inherit property "textContent" with the proper type (27)
901 PASS Node interface: element must inherit property "normalize" with the proper t ype (28)
902 PASS Node interface: element must inherit property "cloneNode" with the proper t ype (29)
903 PASS Node interface: calling cloneNode(boolean) on element with too few argument s must throw TypeError
904 PASS Node interface: element must inherit property "isEqualNode" with the proper type (30)
905 PASS Node interface: calling isEqualNode(Node) on element with too few arguments must throw TypeError
906 PASS Node interface: element must inherit property "isSameNode" with the proper type (31)
907 PASS Node interface: calling isSameNode(Node) on element with too few arguments must throw TypeError
908 PASS Node interface: element must inherit property "DOCUMENT_POSITION_DISCONNECT ED" with the proper type (32)
909 PASS Node interface: element must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type (33)
910 PASS Node interface: element must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type (34)
911 PASS Node interface: element must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type (35)
912 PASS Node interface: element must inherit property "DOCUMENT_POSITION_CONTAINED_ BY" with the proper type (36)
913 PASS Node interface: element must inherit property "DOCUMENT_POSITION_IMPLEMENTA TION_SPECIFIC" with the proper type (37)
914 PASS Node interface: element must inherit property "compareDocumentPosition" wit h the proper type (38)
915 PASS Node interface: calling compareDocumentPosition(Node) on element with too f ew arguments must throw TypeError
916 PASS Node interface: element must inherit property "contains" with the proper ty pe (39)
917 PASS Node interface: calling contains(Node) on element with too few arguments mu st throw TypeError
918 PASS Node interface: element must inherit property "lookupPrefix" with the prope r type (40)
919 PASS Node interface: calling lookupPrefix(DOMString) on element with too few arg uments must throw TypeError
920 PASS Node interface: element must inherit property "lookupNamespaceURI" with the proper type (41)
921 PASS Node interface: calling lookupNamespaceURI(DOMString) on element with too f ew arguments must throw TypeError
922 PASS Node interface: element must inherit property "isDefaultNamespace" with the proper type (42)
923 PASS Node interface: calling isDefaultNamespace(DOMString) on element with too f ew arguments must throw TypeError
924 PASS Node interface: element must inherit property "insertBefore" with the prope r type (43)
925 PASS Node interface: calling insertBefore(Node,Node) on element with too few arg uments must throw TypeError
926 PASS Node interface: element must inherit property "appendChild" with the proper type (44)
927 PASS Node interface: calling appendChild(Node) on element with too few arguments must throw TypeError
928 PASS Node interface: element must inherit property "replaceChild" with the prope r type (45)
929 PASS Node interface: calling replaceChild(Node,Node) on element with too few arg uments must throw TypeError
930 PASS Node interface: element must inherit property "removeChild" with the proper type (46)
931 PASS Node interface: calling removeChild(Node) on element with too few arguments must throw TypeError
932 PASS EventTarget interface: element must inherit property "addEventListener" wit h the proper type (0)
933 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on element with too few arguments must throw TypeE rror
934 PASS EventTarget interface: element must inherit property "removeEventListener" with the proper type (1)
935 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on element with too few arguments must throw Ty peError
936 PASS EventTarget interface: element must inherit property "dispatchEvent" with t he proper type (2)
937 PASS EventTarget interface: calling dispatchEvent(Event) on element with too few arguments must throw TypeError
938 PASS NamedNodeMap interface: existence and properties of interface object
939 PASS NamedNodeMap interface object length
940 PASS NamedNodeMap interface object name
941 FAIL NamedNodeMap interface: existence and properties of interface prototype obj ect assert_equals: class string of NamedNodeMap.prototype expected "[object Name dNodeMapPrototype]" but got "[object NamedNodeMap]"
942 PASS NamedNodeMap interface: existence and properties of interface prototype obj ect's "constructor" property
943 PASS NamedNodeMap interface: attribute length
944 PASS NamedNodeMap interface: operation item(unsigned long)
945 PASS NamedNodeMap interface: operation getNamedItem(DOMString)
946 PASS NamedNodeMap interface: operation getNamedItemNS(DOMString,DOMString)
947 PASS NamedNodeMap interface: operation setNamedItem(Attr)
948 PASS NamedNodeMap interface: operation setNamedItemNS(Attr)
949 PASS NamedNodeMap interface: operation removeNamedItem(DOMString)
950 PASS NamedNodeMap interface: operation removeNamedItemNS(DOMString,DOMString)
951 FAIL Attr interface: existence and properties of interface object assert_equals: prototype of self's property "Attr" is not Function.prototype expected function "function () {}" but got function "function Node() { [native code] }"
952 PASS Attr interface object length
953 PASS Attr interface object name
954 FAIL Attr interface: existence and properties of interface prototype object asse rt_equals: prototype of Attr.prototype is not Object.prototype expected object " [object Object]" but got object "[object Node]"
955 PASS Attr interface: existence and properties of interface prototype object's "c onstructor" property
956 PASS Attr interface: attribute namespaceURI
957 PASS Attr interface: attribute prefix
958 PASS Attr interface: attribute localName
959 PASS Attr interface: attribute name
960 FAIL Attr interface: attribute nodeName assert_own_property: expected property " nodeName" missing
961 PASS Attr interface: attribute value
962 PASS Attr interface: attribute nodeValue
963 PASS Attr interface: attribute textContent
964 PASS Attr interface: attribute ownerElement
965 PASS Attr interface: attribute specified
966 PASS Attr must be primary interface of document.querySelector("[id]").attributes [0]
967 PASS Stringification of document.querySelector("[id]").attributes[0]
968 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "namespaceURI" with the proper type (0)
969 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "prefix" with the proper type (1)
970 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "localName" with the proper type (2)
971 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "name" with the proper type (3)
972 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "nodeName" with the proper type (4)
973 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "value" with the proper type (5)
974 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "nodeValue" with the proper type (6)
975 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "textContent" with the proper type (7)
976 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "ownerElement" with the proper type (8)
977 PASS Attr interface: document.querySelector("[id]").attributes[0] must inherit p roperty "specified" with the proper type (9)
978 PASS CharacterData interface: existence and properties of interface object
979 PASS CharacterData interface object length
980 PASS CharacterData interface object name
981 FAIL CharacterData interface: existence and properties of interface prototype ob ject assert_equals: class string of CharacterData.prototype expected "[object Ch aracterDataPrototype]" but got "[object CharacterData]"
982 PASS CharacterData interface: existence and properties of interface prototype ob ject's "constructor" property
983 PASS CharacterData interface: attribute data
984 PASS CharacterData interface: attribute length
985 PASS CharacterData interface: operation substringData(unsigned long,unsigned lon g)
986 PASS CharacterData interface: operation appendData(DOMString)
987 PASS CharacterData interface: operation insertData(unsigned long,DOMString)
988 PASS CharacterData interface: operation deleteData(unsigned long,unsigned long)
989 PASS CharacterData interface: operation replaceData(unsigned long,unsigned long, DOMString)
990 PASS CharacterData interface: attribute previousElementSibling
991 PASS CharacterData interface: attribute nextElementSibling
992 PASS CharacterData interface: operation before([object Object],[object Object])
993 PASS CharacterData interface: operation after([object Object],[object Object])
994 PASS CharacterData interface: operation replaceWith([object Object],[object Obje ct])
995 PASS CharacterData interface: operation remove()
996 PASS Text interface: existence and properties of interface object
997 PASS Text interface object length
998 PASS Text interface object name
999 FAIL Text interface: existence and properties of interface prototype object asse rt_equals: class string of Text.prototype expected "[object TextPrototype]" but got "[object Text]"
1000 PASS Text interface: existence and properties of interface prototype object's "c onstructor" property
1001 PASS Text interface: operation splitText(unsigned long)
1002 PASS Text interface: attribute wholeText
1003 PASS Text interface: attribute assignedSlot
1004 PASS Text must be primary interface of document.createTextNode("abc")
1005 PASS Stringification of document.createTextNode("abc")
1006 PASS Text interface: document.createTextNode("abc") must inherit property "split Text" with the proper type (0)
1007 PASS Text interface: calling splitText(unsigned long) on document.createTextNode ("abc") with too few arguments must throw TypeError
1008 PASS Text interface: document.createTextNode("abc") must inherit property "whole Text" with the proper type (1)
1009 PASS Text interface: document.createTextNode("abc") must inherit property "assig nedSlot" with the proper type (2)
1010 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "data" with the proper type (0)
1011 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "length" with the proper type (1)
1012 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "substringData" with the proper type (2)
1013 PASS CharacterData interface: calling substringData(unsigned long,unsigned long) on document.createTextNode("abc") with too few arguments must throw TypeError
1014 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "appendData" with the proper type (3)
1015 PASS CharacterData interface: calling appendData(DOMString) on document.createTe xtNode("abc") with too few arguments must throw TypeError
1016 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "insertData" with the proper type (4)
1017 PASS CharacterData interface: calling insertData(unsigned long,DOMString) on doc ument.createTextNode("abc") with too few arguments must throw TypeError
1018 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "deleteData" with the proper type (5)
1019 PASS CharacterData interface: calling deleteData(unsigned long,unsigned long) on document.createTextNode("abc") with too few arguments must throw TypeError
1020 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "replaceData" with the proper type (6)
1021 PASS CharacterData interface: calling replaceData(unsigned long,unsigned long,DO MString) on document.createTextNode("abc") with too few arguments must throw Typ eError
1022 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "previousElementSibling" with the proper type (7)
1023 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "nextElementSibling" with the proper type (8)
1024 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "before" with the proper type (9)
1025 PASS CharacterData interface: calling before([object Object],[object Object]) on document.createTextNode("abc") with too few arguments must throw TypeError
1026 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "after" with the proper type (10)
1027 PASS CharacterData interface: calling after([object Object],[object Object]) on document.createTextNode("abc") with too few arguments must throw TypeError
1028 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "replaceWith" with the proper type (11)
1029 PASS CharacterData interface: calling replaceWith([object Object],[object Object ]) on document.createTextNode("abc") with too few arguments must throw TypeError
1030 PASS CharacterData interface: document.createTextNode("abc") must inherit proper ty "remove" with the proper type (12)
1031 PASS Node interface: document.createTextNode("abc") must inherit property "ELEME NT_NODE" with the proper type (0)
1032 PASS Node interface: document.createTextNode("abc") must inherit property "ATTRI BUTE_NODE" with the proper type (1)
1033 PASS Node interface: document.createTextNode("abc") must inherit property "TEXT_ NODE" with the proper type (2)
1034 PASS Node interface: document.createTextNode("abc") must inherit property "CDATA _SECTION_NODE" with the proper type (3)
1035 PASS Node interface: document.createTextNode("abc") must inherit property "ENTIT Y_REFERENCE_NODE" with the proper type (4)
1036 PASS Node interface: document.createTextNode("abc") must inherit property "ENTIT Y_NODE" with the proper type (5)
1037 PASS Node interface: document.createTextNode("abc") must inherit property "PROCE SSING_INSTRUCTION_NODE" with the proper type (6)
1038 PASS Node interface: document.createTextNode("abc") must inherit property "COMME NT_NODE" with the proper type (7)
1039 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_NODE" with the proper type (8)
1040 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_TYPE_NODE" with the proper type (9)
1041 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_FRAGMENT_NODE" with the proper type (10)
1042 PASS Node interface: document.createTextNode("abc") must inherit property "NOTAT ION_NODE" with the proper type (11)
1043 PASS Node interface: document.createTextNode("abc") must inherit property "nodeT ype" with the proper type (12)
1044 PASS Node interface: document.createTextNode("abc") must inherit property "nodeN ame" with the proper type (13)
1045 PASS Node interface: document.createTextNode("abc") must inherit property "baseU RI" with the proper type (14)
1046 PASS Node interface: document.createTextNode("abc") must inherit property "isCon nected" with the proper type (15)
1047 PASS Node interface: document.createTextNode("abc") must inherit property "owner Document" with the proper type (16)
1048 PASS Node interface: document.createTextNode("abc") must inherit property "rootN ode" with the proper type (17)
1049 PASS Node interface: document.createTextNode("abc") must inherit property "paren tNode" with the proper type (18)
1050 PASS Node interface: document.createTextNode("abc") must inherit property "paren tElement" with the proper type (19)
1051 PASS Node interface: document.createTextNode("abc") must inherit property "hasCh ildNodes" with the proper type (20)
1052 PASS Node interface: document.createTextNode("abc") must inherit property "child Nodes" with the proper type (21)
1053 PASS Node interface: document.createTextNode("abc") must inherit property "first Child" with the proper type (22)
1054 PASS Node interface: document.createTextNode("abc") must inherit property "lastC hild" with the proper type (23)
1055 PASS Node interface: document.createTextNode("abc") must inherit property "previ ousSibling" with the proper type (24)
1056 PASS Node interface: document.createTextNode("abc") must inherit property "nextS ibling" with the proper type (25)
1057 PASS Node interface: document.createTextNode("abc") must inherit property "nodeV alue" with the proper type (26)
1058 PASS Node interface: document.createTextNode("abc") must inherit property "textC ontent" with the proper type (27)
1059 PASS Node interface: document.createTextNode("abc") must inherit property "norma lize" with the proper type (28)
1060 PASS Node interface: document.createTextNode("abc") must inherit property "clone Node" with the proper type (29)
1061 PASS Node interface: calling cloneNode(boolean) on document.createTextNode("abc" ) with too few arguments must throw TypeError
1062 PASS Node interface: document.createTextNode("abc") must inherit property "isEqu alNode" with the proper type (30)
1063 PASS Node interface: calling isEqualNode(Node) on document.createTextNode("abc") with too few arguments must throw TypeError
1064 PASS Node interface: document.createTextNode("abc") must inherit property "isSam eNode" with the proper type (31)
1065 PASS Node interface: calling isSameNode(Node) on document.createTextNode("abc") with too few arguments must throw TypeError
1066 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_DISCONNECTED" with the proper type (32)
1067 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_PRECEDING" with the proper type (33)
1068 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_FOLLOWING" with the proper type (34)
1069 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_CONTAINS" with the proper type (35)
1070 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_CONTAINED_BY" with the proper type (36)
1071 PASS Node interface: document.createTextNode("abc") must inherit property "DOCUM ENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (37)
1072 PASS Node interface: document.createTextNode("abc") must inherit property "compa reDocumentPosition" with the proper type (38)
1073 PASS Node interface: calling compareDocumentPosition(Node) on document.createTex tNode("abc") with too few arguments must throw TypeError
1074 PASS Node interface: document.createTextNode("abc") must inherit property "conta ins" with the proper type (39)
1075 PASS Node interface: calling contains(Node) on document.createTextNode("abc") wi th too few arguments must throw TypeError
1076 PASS Node interface: document.createTextNode("abc") must inherit property "looku pPrefix" with the proper type (40)
1077 PASS Node interface: calling lookupPrefix(DOMString) on document.createTextNode( "abc") with too few arguments must throw TypeError
1078 PASS Node interface: document.createTextNode("abc") must inherit property "looku pNamespaceURI" with the proper type (41)
1079 PASS Node interface: calling lookupNamespaceURI(DOMString) on document.createTex tNode("abc") with too few arguments must throw TypeError
1080 PASS Node interface: document.createTextNode("abc") must inherit property "isDef aultNamespace" with the proper type (42)
1081 PASS Node interface: calling isDefaultNamespace(DOMString) on document.createTex tNode("abc") with too few arguments must throw TypeError
1082 PASS Node interface: document.createTextNode("abc") must inherit property "inser tBefore" with the proper type (43)
1083 PASS Node interface: calling insertBefore(Node,Node) on document.createTextNode( "abc") with too few arguments must throw TypeError
1084 PASS Node interface: document.createTextNode("abc") must inherit property "appen dChild" with the proper type (44)
1085 PASS Node interface: calling appendChild(Node) on document.createTextNode("abc") with too few arguments must throw TypeError
1086 PASS Node interface: document.createTextNode("abc") must inherit property "repla ceChild" with the proper type (45)
1087 PASS Node interface: calling replaceChild(Node,Node) on document.createTextNode( "abc") with too few arguments must throw TypeError
1088 PASS Node interface: document.createTextNode("abc") must inherit property "remov eChild" with the proper type (46)
1089 PASS Node interface: calling removeChild(Node) on document.createTextNode("abc") with too few arguments must throw TypeError
1090 PASS EventTarget interface: document.createTextNode("abc") must inherit property "addEventListener" with the proper type (0)
1091 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on document.createTextNode("abc") with too few arg uments must throw TypeError
1092 PASS EventTarget interface: document.createTextNode("abc") must inherit property "removeEventListener" with the proper type (1)
1093 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on document.createTextNode("abc") with too few arguments must throw TypeError
1094 PASS EventTarget interface: document.createTextNode("abc") must inherit property "dispatchEvent" with the proper type (2)
1095 PASS EventTarget interface: calling dispatchEvent(Event) on document.createTextN ode("abc") with too few arguments must throw TypeError
1096 PASS ProcessingInstruction interface: existence and properties of interface obje ct
1097 PASS ProcessingInstruction interface object length
1098 PASS ProcessingInstruction interface object name
1099 FAIL ProcessingInstruction interface: existence and properties of interface prot otype object assert_equals: class string of ProcessingInstruction.prototype expe cted "[object ProcessingInstructionPrototype]" but got "[object ProcessingInstru ction]"
1100 PASS ProcessingInstruction interface: existence and properties of interface prot otype object's "constructor" property
1101 PASS ProcessingInstruction interface: attribute target
1102 PASS ProcessingInstruction must be primary interface of xmlDoc.createProcessingI nstruction("abc", "def")
1103 PASS Stringification of xmlDoc.createProcessingInstruction("abc", "def")
1104 PASS ProcessingInstruction interface: xmlDoc.createProcessingInstruction("abc", "def") must inherit property "target" with the proper type (0)
1105 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "data" with the proper type (0)
1106 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "length" with the proper type (1)
1107 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "substringData" with the proper type (2)
1108 PASS CharacterData interface: calling substringData(unsigned long,unsigned long) on xmlDoc.createProcessingInstruction("abc", "def") with too few arguments must throw TypeError
1109 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "appendData" with the proper type (3)
1110 PASS CharacterData interface: calling appendData(DOMString) on xmlDoc.createProc essingInstruction("abc", "def") with too few arguments must throw TypeError
1111 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "insertData" with the proper type (4)
1112 PASS CharacterData interface: calling insertData(unsigned long,DOMString) on xml Doc.createProcessingInstruction("abc", "def") with too few arguments must throw TypeError
1113 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "deleteData" with the proper type (5)
1114 PASS CharacterData interface: calling deleteData(unsigned long,unsigned long) on xmlDoc.createProcessingInstruction("abc", "def") with too few arguments must th row TypeError
1115 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "replaceData" with the proper type (6)
1116 PASS CharacterData interface: calling replaceData(unsigned long,unsigned long,DO MString) on xmlDoc.createProcessingInstruction("abc", "def") with too few argume nts must throw TypeError
1117 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "previousElementSibling" with the proper type (7)
1118 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "nextElementSibling" with the proper type (8)
1119 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "before" with the proper type (9)
1120 PASS CharacterData interface: calling before([object Object],[object Object]) on xmlDoc.createProcessingInstruction("abc", "def") with too few arguments must th row TypeError
1121 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "after" with the proper type (10)
1122 PASS CharacterData interface: calling after([object Object],[object Object]) on xmlDoc.createProcessingInstruction("abc", "def") with too few arguments must thr ow TypeError
1123 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "replaceWith" with the proper type (11)
1124 PASS CharacterData interface: calling replaceWith([object Object],[object Object ]) on xmlDoc.createProcessingInstruction("abc", "def") with too few arguments mu st throw TypeError
1125 PASS CharacterData interface: xmlDoc.createProcessingInstruction("abc", "def") m ust inherit property "remove" with the proper type (12)
1126 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "ELEMENT_NODE" with the proper type (0)
1127 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "ATTRIBUTE_NODE" with the proper type (1)
1128 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "TEXT_NODE" with the proper type (2)
1129 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "CDATA_SECTION_NODE" with the proper type (3)
1130 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "ENTITY_REFERENCE_NODE" with the proper type (4)
1131 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "ENTITY_NODE" with the proper type (5)
1132 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "PROCESSING_INSTRUCTION_NODE" with the proper type (6)
1133 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "COMMENT_NODE" with the proper type (7)
1134 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_NODE" with the proper type (8)
1135 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_TYPE_NODE" with the proper type (9)
1136 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_FRAGMENT_NODE" with the proper type (10)
1137 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "NOTATION_NODE" with the proper type (11)
1138 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "nodeType" with the proper type (12)
1139 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "nodeName" with the proper type (13)
1140 FAIL Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "baseURI" with the proper type (14) assert_equals: expected "string" but got "object"
1141 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "isConnected" with the proper type (15)
1142 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "ownerDocument" with the proper type (16)
1143 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "rootNode" with the proper type (17)
1144 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "parentNode" with the proper type (18)
1145 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "parentElement" with the proper type (19)
1146 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "hasChildNodes" with the proper type (20)
1147 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "childNodes" with the proper type (21)
1148 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "firstChild" with the proper type (22)
1149 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "lastChild" with the proper type (23)
1150 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "previousSibling" with the proper type (24)
1151 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "nextSibling" with the proper type (25)
1152 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "nodeValue" with the proper type (26)
1153 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "textContent" with the proper type (27)
1154 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "normalize" with the proper type (28)
1155 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "cloneNode" with the proper type (29)
1156 PASS Node interface: calling cloneNode(boolean) on xmlDoc.createProcessingInstru ction("abc", "def") with too few arguments must throw TypeError
1157 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "isEqualNode" with the proper type (30)
1158 PASS Node interface: calling isEqualNode(Node) on xmlDoc.createProcessingInstruc tion("abc", "def") with too few arguments must throw TypeError
1159 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "isSameNode" with the proper type (31)
1160 PASS Node interface: calling isSameNode(Node) on xmlDoc.createProcessingInstruct ion("abc", "def") with too few arguments must throw TypeError
1161 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_DISCONNECTED" with the proper type (32)
1162 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_PRECEDING" with the proper type (33)
1163 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_FOLLOWING" with the proper type (34)
1164 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_CONTAINS" with the proper type (35)
1165 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type (36)
1166 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (37 )
1167 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "compareDocumentPosition" with the proper type (38)
1168 PASS Node interface: calling compareDocumentPosition(Node) on xmlDoc.createProce ssingInstruction("abc", "def") with too few arguments must throw TypeError
1169 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "contains" with the proper type (39)
1170 PASS Node interface: calling contains(Node) on xmlDoc.createProcessingInstructio n("abc", "def") with too few arguments must throw TypeError
1171 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "lookupPrefix" with the proper type (40)
1172 PASS Node interface: calling lookupPrefix(DOMString) on xmlDoc.createProcessingI nstruction("abc", "def") with too few arguments must throw TypeError
1173 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "lookupNamespaceURI" with the proper type (41)
1174 PASS Node interface: calling lookupNamespaceURI(DOMString) on xmlDoc.createProce ssingInstruction("abc", "def") with too few arguments must throw TypeError
1175 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "isDefaultNamespace" with the proper type (42)
1176 PASS Node interface: calling isDefaultNamespace(DOMString) on xmlDoc.createProce ssingInstruction("abc", "def") with too few arguments must throw TypeError
1177 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "insertBefore" with the proper type (43)
1178 PASS Node interface: calling insertBefore(Node,Node) on xmlDoc.createProcessingI nstruction("abc", "def") with too few arguments must throw TypeError
1179 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "appendChild" with the proper type (44)
1180 PASS Node interface: calling appendChild(Node) on xmlDoc.createProcessingInstruc tion("abc", "def") with too few arguments must throw TypeError
1181 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "replaceChild" with the proper type (45)
1182 PASS Node interface: calling replaceChild(Node,Node) on xmlDoc.createProcessingI nstruction("abc", "def") with too few arguments must throw TypeError
1183 PASS Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inher it property "removeChild" with the proper type (46)
1184 PASS Node interface: calling removeChild(Node) on xmlDoc.createProcessingInstruc tion("abc", "def") with too few arguments must throw TypeError
1185 PASS EventTarget interface: xmlDoc.createProcessingInstruction("abc", "def") mus t inherit property "addEventListener" with the proper type (0)
1186 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on xmlDoc.createProcessingInstruction("abc", "def" ) with too few arguments must throw TypeError
1187 PASS EventTarget interface: xmlDoc.createProcessingInstruction("abc", "def") mus t inherit property "removeEventListener" with the proper type (1)
1188 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on xmlDoc.createProcessingInstruction("abc", "d ef") with too few arguments must throw TypeError
1189 PASS EventTarget interface: xmlDoc.createProcessingInstruction("abc", "def") mus t inherit property "dispatchEvent" with the proper type (2)
1190 PASS EventTarget interface: calling dispatchEvent(Event) on xmlDoc.createProcess ingInstruction("abc", "def") with too few arguments must throw TypeError
1191 PASS Comment interface: existence and properties of interface object
1192 PASS Comment interface object length
1193 PASS Comment interface object name
1194 FAIL Comment interface: existence and properties of interface prototype object a ssert_equals: class string of Comment.prototype expected "[object CommentPrototy pe]" but got "[object Comment]"
1195 PASS Comment interface: existence and properties of interface prototype object's "constructor" property
1196 PASS Comment must be primary interface of document.createComment("abc")
1197 PASS Stringification of document.createComment("abc")
1198 PASS CharacterData interface: document.createComment("abc") must inherit propert y "data" with the proper type (0)
1199 PASS CharacterData interface: document.createComment("abc") must inherit propert y "length" with the proper type (1)
1200 PASS CharacterData interface: document.createComment("abc") must inherit propert y "substringData" with the proper type (2)
1201 PASS CharacterData interface: calling substringData(unsigned long,unsigned long) on document.createComment("abc") with too few arguments must throw TypeError
1202 PASS CharacterData interface: document.createComment("abc") must inherit propert y "appendData" with the proper type (3)
1203 PASS CharacterData interface: calling appendData(DOMString) on document.createCo mment("abc") with too few arguments must throw TypeError
1204 PASS CharacterData interface: document.createComment("abc") must inherit propert y "insertData" with the proper type (4)
1205 PASS CharacterData interface: calling insertData(unsigned long,DOMString) on doc ument.createComment("abc") with too few arguments must throw TypeError
1206 PASS CharacterData interface: document.createComment("abc") must inherit propert y "deleteData" with the proper type (5)
1207 PASS CharacterData interface: calling deleteData(unsigned long,unsigned long) on document.createComment("abc") with too few arguments must throw TypeError
1208 PASS CharacterData interface: document.createComment("abc") must inherit propert y "replaceData" with the proper type (6)
1209 PASS CharacterData interface: calling replaceData(unsigned long,unsigned long,DO MString) on document.createComment("abc") with too few arguments must throw Type Error
1210 PASS CharacterData interface: document.createComment("abc") must inherit propert y "previousElementSibling" with the proper type (7)
1211 PASS CharacterData interface: document.createComment("abc") must inherit propert y "nextElementSibling" with the proper type (8)
1212 PASS CharacterData interface: document.createComment("abc") must inherit propert y "before" with the proper type (9)
1213 PASS CharacterData interface: calling before([object Object],[object Object]) on document.createComment("abc") with too few arguments must throw TypeError
1214 PASS CharacterData interface: document.createComment("abc") must inherit propert y "after" with the proper type (10)
1215 PASS CharacterData interface: calling after([object Object],[object Object]) on document.createComment("abc") with too few arguments must throw TypeError
1216 PASS CharacterData interface: document.createComment("abc") must inherit propert y "replaceWith" with the proper type (11)
1217 PASS CharacterData interface: calling replaceWith([object Object],[object Object ]) on document.createComment("abc") with too few arguments must throw TypeError
1218 PASS CharacterData interface: document.createComment("abc") must inherit propert y "remove" with the proper type (12)
1219 PASS Node interface: document.createComment("abc") must inherit property "ELEMEN T_NODE" with the proper type (0)
1220 PASS Node interface: document.createComment("abc") must inherit property "ATTRIB UTE_NODE" with the proper type (1)
1221 PASS Node interface: document.createComment("abc") must inherit property "TEXT_N ODE" with the proper type (2)
1222 PASS Node interface: document.createComment("abc") must inherit property "CDATA_ SECTION_NODE" with the proper type (3)
1223 PASS Node interface: document.createComment("abc") must inherit property "ENTITY _REFERENCE_NODE" with the proper type (4)
1224 PASS Node interface: document.createComment("abc") must inherit property "ENTITY _NODE" with the proper type (5)
1225 PASS Node interface: document.createComment("abc") must inherit property "PROCES SING_INSTRUCTION_NODE" with the proper type (6)
1226 PASS Node interface: document.createComment("abc") must inherit property "COMMEN T_NODE" with the proper type (7)
1227 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_NODE" with the proper type (8)
1228 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_TYPE_NODE" with the proper type (9)
1229 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_FRAGMENT_NODE" with the proper type (10)
1230 PASS Node interface: document.createComment("abc") must inherit property "NOTATI ON_NODE" with the proper type (11)
1231 PASS Node interface: document.createComment("abc") must inherit property "nodeTy pe" with the proper type (12)
1232 PASS Node interface: document.createComment("abc") must inherit property "nodeNa me" with the proper type (13)
1233 PASS Node interface: document.createComment("abc") must inherit property "baseUR I" with the proper type (14)
1234 PASS Node interface: document.createComment("abc") must inherit property "isConn ected" with the proper type (15)
1235 PASS Node interface: document.createComment("abc") must inherit property "ownerD ocument" with the proper type (16)
1236 PASS Node interface: document.createComment("abc") must inherit property "rootNo de" with the proper type (17)
1237 PASS Node interface: document.createComment("abc") must inherit property "parent Node" with the proper type (18)
1238 PASS Node interface: document.createComment("abc") must inherit property "parent Element" with the proper type (19)
1239 PASS Node interface: document.createComment("abc") must inherit property "hasChi ldNodes" with the proper type (20)
1240 PASS Node interface: document.createComment("abc") must inherit property "childN odes" with the proper type (21)
1241 PASS Node interface: document.createComment("abc") must inherit property "firstC hild" with the proper type (22)
1242 PASS Node interface: document.createComment("abc") must inherit property "lastCh ild" with the proper type (23)
1243 PASS Node interface: document.createComment("abc") must inherit property "previo usSibling" with the proper type (24)
1244 PASS Node interface: document.createComment("abc") must inherit property "nextSi bling" with the proper type (25)
1245 PASS Node interface: document.createComment("abc") must inherit property "nodeVa lue" with the proper type (26)
1246 PASS Node interface: document.createComment("abc") must inherit property "textCo ntent" with the proper type (27)
1247 PASS Node interface: document.createComment("abc") must inherit property "normal ize" with the proper type (28)
1248 PASS Node interface: document.createComment("abc") must inherit property "cloneN ode" with the proper type (29)
1249 PASS Node interface: calling cloneNode(boolean) on document.createComment("abc") with too few arguments must throw TypeError
1250 PASS Node interface: document.createComment("abc") must inherit property "isEqua lNode" with the proper type (30)
1251 PASS Node interface: calling isEqualNode(Node) on document.createComment("abc") with too few arguments must throw TypeError
1252 PASS Node interface: document.createComment("abc") must inherit property "isSame Node" with the proper type (31)
1253 PASS Node interface: calling isSameNode(Node) on document.createComment("abc") w ith too few arguments must throw TypeError
1254 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_DISCONNECTED" with the proper type (32)
1255 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_PRECEDING" with the proper type (33)
1256 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_FOLLOWING" with the proper type (34)
1257 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_CONTAINS" with the proper type (35)
1258 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_CONTAINED_BY" with the proper type (36)
1259 PASS Node interface: document.createComment("abc") must inherit property "DOCUME NT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (37)
1260 PASS Node interface: document.createComment("abc") must inherit property "compar eDocumentPosition" with the proper type (38)
1261 PASS Node interface: calling compareDocumentPosition(Node) on document.createCom ment("abc") with too few arguments must throw TypeError
1262 PASS Node interface: document.createComment("abc") must inherit property "contai ns" with the proper type (39)
1263 PASS Node interface: calling contains(Node) on document.createComment("abc") wit h too few arguments must throw TypeError
1264 PASS Node interface: document.createComment("abc") must inherit property "lookup Prefix" with the proper type (40)
1265 PASS Node interface: calling lookupPrefix(DOMString) on document.createComment(" abc") with too few arguments must throw TypeError
1266 PASS Node interface: document.createComment("abc") must inherit property "lookup NamespaceURI" with the proper type (41)
1267 PASS Node interface: calling lookupNamespaceURI(DOMString) on document.createCom ment("abc") with too few arguments must throw TypeError
1268 PASS Node interface: document.createComment("abc") must inherit property "isDefa ultNamespace" with the proper type (42)
1269 PASS Node interface: calling isDefaultNamespace(DOMString) on document.createCom ment("abc") with too few arguments must throw TypeError
1270 PASS Node interface: document.createComment("abc") must inherit property "insert Before" with the proper type (43)
1271 PASS Node interface: calling insertBefore(Node,Node) on document.createComment(" abc") with too few arguments must throw TypeError
1272 PASS Node interface: document.createComment("abc") must inherit property "append Child" with the proper type (44)
1273 PASS Node interface: calling appendChild(Node) on document.createComment("abc") with too few arguments must throw TypeError
1274 PASS Node interface: document.createComment("abc") must inherit property "replac eChild" with the proper type (45)
1275 PASS Node interface: calling replaceChild(Node,Node) on document.createComment(" abc") with too few arguments must throw TypeError
1276 PASS Node interface: document.createComment("abc") must inherit property "remove Child" with the proper type (46)
1277 PASS Node interface: calling removeChild(Node) on document.createComment("abc") with too few arguments must throw TypeError
1278 PASS EventTarget interface: document.createComment("abc") must inherit property "addEventListener" with the proper type (0)
1279 PASS EventTarget interface: calling addEventListener(DOMString,EventListener,[ob ject Object],[object Object]) on document.createComment("abc") with too few argu ments must throw TypeError
1280 PASS EventTarget interface: document.createComment("abc") must inherit property "removeEventListener" with the proper type (1)
1281 PASS EventTarget interface: calling removeEventListener(DOMString,EventListener, [object Object],[object Object]) on document.createComment("abc") with too few a rguments must throw TypeError
1282 PASS EventTarget interface: document.createComment("abc") must inherit property "dispatchEvent" with the proper type (2)
1283 PASS EventTarget interface: calling dispatchEvent(Event) on document.createComme nt("abc") with too few arguments must throw TypeError
1284 PASS Range interface: existence and properties of interface object
1285 PASS Range interface object length
1286 PASS Range interface object name
1287 FAIL Range interface: existence and properties of interface prototype object ass ert_equals: class string of Range.prototype expected "[object RangePrototype]" b ut got "[object Range]"
1288 PASS Range interface: existence and properties of interface prototype object's " constructor" property
1289 PASS Range interface: attribute startContainer
1290 PASS Range interface: attribute startOffset
1291 PASS Range interface: attribute endContainer
1292 PASS Range interface: attribute endOffset
1293 PASS Range interface: attribute collapsed
1294 PASS Range interface: attribute commonAncestorContainer
1295 PASS Range interface: operation setStart(Node,unsigned long)
1296 PASS Range interface: operation setEnd(Node,unsigned long)
1297 PASS Range interface: operation setStartBefore(Node)
1298 PASS Range interface: operation setStartAfter(Node)
1299 PASS Range interface: operation setEndBefore(Node)
1300 PASS Range interface: operation setEndAfter(Node)
1301 PASS Range interface: operation collapse(boolean)
1302 PASS Range interface: operation selectNode(Node)
1303 PASS Range interface: operation selectNodeContents(Node)
1304 PASS Range interface: constant START_TO_START on interface object
1305 PASS Range interface: constant START_TO_START on interface prototype object
1306 PASS Range interface: constant START_TO_END on interface object
1307 PASS Range interface: constant START_TO_END on interface prototype object
1308 PASS Range interface: constant END_TO_END on interface object
1309 PASS Range interface: constant END_TO_END on interface prototype object
1310 PASS Range interface: constant END_TO_START on interface object
1311 PASS Range interface: constant END_TO_START on interface prototype object
1312 PASS Range interface: operation compareBoundaryPoints(unsigned short,Range)
1313 PASS Range interface: operation deleteContents()
1314 PASS Range interface: operation extractContents()
1315 PASS Range interface: operation cloneContents()
1316 PASS Range interface: operation insertNode(Node)
1317 PASS Range interface: operation surroundContents(Node)
1318 PASS Range interface: operation cloneRange()
1319 PASS Range interface: operation detach()
1320 PASS Range interface: operation isPointInRange(Node,unsigned long)
1321 PASS Range interface: operation comparePoint(Node,unsigned long)
1322 PASS Range interface: operation intersectsNode(Node)
1323 PASS Range interface: stringifier
1324 PASS Range must be primary interface of document.createRange()
1325 PASS Stringification of document.createRange()
1326 PASS Range interface: document.createRange() must inherit property "startContain er" with the proper type (0)
1327 PASS Range interface: document.createRange() must inherit property "startOffset" with the proper type (1)
1328 PASS Range interface: document.createRange() must inherit property "endContainer " with the proper type (2)
1329 PASS Range interface: document.createRange() must inherit property "endOffset" w ith the proper type (3)
1330 PASS Range interface: document.createRange() must inherit property "collapsed" w ith the proper type (4)
1331 PASS Range interface: document.createRange() must inherit property "commonAncest orContainer" with the proper type (5)
1332 PASS Range interface: document.createRange() must inherit property "setStart" wi th the proper type (6)
1333 PASS Range interface: calling setStart(Node,unsigned long) on document.createRan ge() with too few arguments must throw TypeError
1334 PASS Range interface: document.createRange() must inherit property "setEnd" with the proper type (7)
1335 PASS Range interface: calling setEnd(Node,unsigned long) on document.createRange () with too few arguments must throw TypeError
1336 PASS Range interface: document.createRange() must inherit property "setStartBefo re" with the proper type (8)
1337 PASS Range interface: calling setStartBefore(Node) on document.createRange() wit h too few arguments must throw TypeError
1338 PASS Range interface: document.createRange() must inherit property "setStartAfte r" with the proper type (9)
1339 PASS Range interface: calling setStartAfter(Node) on document.createRange() with too few arguments must throw TypeError
1340 PASS Range interface: document.createRange() must inherit property "setEndBefore " with the proper type (10)
1341 PASS Range interface: calling setEndBefore(Node) on document.createRange() with too few arguments must throw TypeError
1342 PASS Range interface: document.createRange() must inherit property "setEndAfter" with the proper type (11)
1343 PASS Range interface: calling setEndAfter(Node) on document.createRange() with t oo few arguments must throw TypeError
1344 PASS Range interface: document.createRange() must inherit property "collapse" wi th the proper type (12)
1345 PASS Range interface: calling collapse(boolean) on document.createRange() with t oo few arguments must throw TypeError
1346 PASS Range interface: document.createRange() must inherit property "selectNode" with the proper type (13)
1347 PASS Range interface: calling selectNode(Node) on document.createRange() with to o few arguments must throw TypeError
1348 PASS Range interface: document.createRange() must inherit property "selectNodeCo ntents" with the proper type (14)
1349 PASS Range interface: calling selectNodeContents(Node) on document.createRange() with too few arguments must throw TypeError
1350 PASS Range interface: document.createRange() must inherit property "START_TO_STA RT" with the proper type (15)
1351 PASS Range interface: document.createRange() must inherit property "START_TO_END " with the proper type (16)
1352 PASS Range interface: document.createRange() must inherit property "END_TO_END" with the proper type (17)
1353 PASS Range interface: document.createRange() must inherit property "END_TO_START " with the proper type (18)
1354 PASS Range interface: document.createRange() must inherit property "compareBound aryPoints" with the proper type (19)
1355 PASS Range interface: calling compareBoundaryPoints(unsigned short,Range) on doc ument.createRange() with too few arguments must throw TypeError
1356 PASS Range interface: document.createRange() must inherit property "deleteConten ts" with the proper type (20)
1357 PASS Range interface: document.createRange() must inherit property "extractConte nts" with the proper type (21)
1358 PASS Range interface: document.createRange() must inherit property "cloneContent s" with the proper type (22)
1359 PASS Range interface: document.createRange() must inherit property "insertNode" with the proper type (23)
1360 PASS Range interface: calling insertNode(Node) on document.createRange() with to o few arguments must throw TypeError
1361 PASS Range interface: document.createRange() must inherit property "surroundCont ents" with the proper type (24)
1362 PASS Range interface: calling surroundContents(Node) on document.createRange() w ith too few arguments must throw TypeError
1363 PASS Range interface: document.createRange() must inherit property "cloneRange" with the proper type (25)
1364 PASS Range interface: document.createRange() must inherit property "detach" with the proper type (26)
1365 PASS Range interface: document.createRange() must inherit property "isPointInRan ge" with the proper type (27)
1366 PASS Range interface: calling isPointInRange(Node,unsigned long) on document.cre ateRange() with too few arguments must throw TypeError
1367 PASS Range interface: document.createRange() must inherit property "comparePoint " with the proper type (28)
1368 PASS Range interface: calling comparePoint(Node,unsigned long) on document.creat eRange() with too few arguments must throw TypeError
1369 PASS Range interface: document.createRange() must inherit property "intersectsNo de" with the proper type (29)
1370 PASS Range interface: calling intersectsNode(Node) on document.createRange() wit h too few arguments must throw TypeError
1371 PASS Range must be primary interface of detachedRange
1372 PASS Stringification of detachedRange
1373 PASS Range interface: detachedRange must inherit property "startContainer" with the proper type (0)
1374 PASS Range interface: detachedRange must inherit property "startOffset" with the proper type (1)
1375 PASS Range interface: detachedRange must inherit property "endContainer" with th e proper type (2)
1376 PASS Range interface: detachedRange must inherit property "endOffset" with the p roper type (3)
1377 PASS Range interface: detachedRange must inherit property "collapsed" with the p roper type (4)
1378 PASS Range interface: detachedRange must inherit property "commonAncestorContain er" with the proper type (5)
1379 PASS Range interface: detachedRange must inherit property "setStart" with the pr oper type (6)
1380 PASS Range interface: calling setStart(Node,unsigned long) on detachedRange with too few arguments must throw TypeError
1381 PASS Range interface: detachedRange must inherit property "setEnd" with the prop er type (7)
1382 PASS Range interface: calling setEnd(Node,unsigned long) on detachedRange with t oo few arguments must throw TypeError
1383 PASS Range interface: detachedRange must inherit property "setStartBefore" with the proper type (8)
1384 PASS Range interface: calling setStartBefore(Node) on detachedRange with too few arguments must throw TypeError
1385 PASS Range interface: detachedRange must inherit property "setStartAfter" with t he proper type (9)
1386 PASS Range interface: calling setStartAfter(Node) on detachedRange with too few arguments must throw TypeError
1387 PASS Range interface: detachedRange must inherit property "setEndBefore" with th e proper type (10)
1388 PASS Range interface: calling setEndBefore(Node) on detachedRange with too few a rguments must throw TypeError
1389 PASS Range interface: detachedRange must inherit property "setEndAfter" with the proper type (11)
1390 PASS Range interface: calling setEndAfter(Node) on detachedRange with too few ar guments must throw TypeError
1391 PASS Range interface: detachedRange must inherit property "collapse" with the pr oper type (12)
1392 PASS Range interface: calling collapse(boolean) on detachedRange with too few ar guments must throw TypeError
1393 PASS Range interface: detachedRange must inherit property "selectNode" with the proper type (13)
1394 PASS Range interface: calling selectNode(Node) on detachedRange with too few arg uments must throw TypeError
1395 PASS Range interface: detachedRange must inherit property "selectNodeContents" w ith the proper type (14)
1396 PASS Range interface: calling selectNodeContents(Node) on detachedRange with too few arguments must throw TypeError
1397 PASS Range interface: detachedRange must inherit property "START_TO_START" with the proper type (15)
1398 PASS Range interface: detachedRange must inherit property "START_TO_END" with th e proper type (16)
1399 PASS Range interface: detachedRange must inherit property "END_TO_END" with the proper type (17)
1400 PASS Range interface: detachedRange must inherit property "END_TO_START" with th e proper type (18)
1401 PASS Range interface: detachedRange must inherit property "compareBoundaryPoints " with the proper type (19)
1402 PASS Range interface: calling compareBoundaryPoints(unsigned short,Range) on det achedRange with too few arguments must throw TypeError
1403 PASS Range interface: detachedRange must inherit property "deleteContents" with the proper type (20)
1404 PASS Range interface: detachedRange must inherit property "extractContents" with the proper type (21)
1405 PASS Range interface: detachedRange must inherit property "cloneContents" with t he proper type (22)
1406 PASS Range interface: detachedRange must inherit property "insertNode" with the proper type (23)
1407 PASS Range interface: calling insertNode(Node) on detachedRange with too few arg uments must throw TypeError
1408 PASS Range interface: detachedRange must inherit property "surroundContents" wit h the proper type (24)
1409 PASS Range interface: calling surroundContents(Node) on detachedRange with too f ew arguments must throw TypeError
1410 PASS Range interface: detachedRange must inherit property "cloneRange" with the proper type (25)
1411 PASS Range interface: detachedRange must inherit property "detach" with the prop er type (26)
1412 PASS Range interface: detachedRange must inherit property "isPointInRange" with the proper type (27)
1413 PASS Range interface: calling isPointInRange(Node,unsigned long) on detachedRang e with too few arguments must throw TypeError
1414 PASS Range interface: detachedRange must inherit property "comparePoint" with th e proper type (28)
1415 PASS Range interface: calling comparePoint(Node,unsigned long) on detachedRange with too few arguments must throw TypeError
1416 PASS Range interface: detachedRange must inherit property "intersectsNode" with the proper type (29)
1417 PASS Range interface: calling intersectsNode(Node) on detachedRange with too few arguments must throw TypeError
1418 PASS NodeIterator interface: existence and properties of interface object
1419 PASS NodeIterator interface object length
1420 PASS NodeIterator interface object name
1421 FAIL NodeIterator interface: existence and properties of interface prototype obj ect assert_equals: class string of NodeIterator.prototype expected "[object Node IteratorPrototype]" but got "[object NodeIterator]"
1422 PASS NodeIterator interface: existence and properties of interface prototype obj ect's "constructor" property
1423 PASS NodeIterator interface: attribute root
1424 PASS NodeIterator interface: attribute referenceNode
1425 PASS NodeIterator interface: attribute pointerBeforeReferenceNode
1426 PASS NodeIterator interface: attribute whatToShow
1427 PASS NodeIterator interface: attribute filter
1428 PASS NodeIterator interface: operation nextNode()
1429 PASS NodeIterator interface: operation previousNode()
1430 PASS NodeIterator interface: operation detach()
1431 PASS NodeIterator must be primary interface of document.createNodeIterator(docum ent.body, NodeFilter.SHOW_ALL, null, false)
1432 PASS Stringification of document.createNodeIterator(document.body, NodeFilter.SH OW_ALL, null, false)
1433 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "root" with the proper type (0)
1434 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "referenceNode" with the proper type (1)
1435 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "pointerBeforeReferenceNode" wit h the proper type (2)
1436 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "whatToShow" with the proper typ e (3)
1437 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "filter" with the proper type (4 )
1438 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "nextNode" with the proper type (5)
1439 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "previousNode" with the proper t ype (6)
1440 PASS NodeIterator interface: document.createNodeIterator(document.body, NodeFilt er.SHOW_ALL, null, false) must inherit property "detach" with the proper type (7 )
1441 PASS TreeWalker interface: existence and properties of interface object
1442 PASS TreeWalker interface object length
1443 PASS TreeWalker interface object name
1444 FAIL TreeWalker interface: existence and properties of interface prototype objec t assert_equals: class string of TreeWalker.prototype expected "[object TreeWalk erPrototype]" but got "[object TreeWalker]"
1445 PASS TreeWalker interface: existence and properties of interface prototype objec t's "constructor" property
1446 PASS TreeWalker interface: attribute root
1447 PASS TreeWalker interface: attribute whatToShow
1448 PASS TreeWalker interface: attribute filter
1449 PASS TreeWalker interface: attribute currentNode
1450 PASS TreeWalker interface: operation parentNode()
1451 PASS TreeWalker interface: operation firstChild()
1452 PASS TreeWalker interface: operation lastChild()
1453 PASS TreeWalker interface: operation previousSibling()
1454 PASS TreeWalker interface: operation nextSibling()
1455 PASS TreeWalker interface: operation previousNode()
1456 PASS TreeWalker interface: operation nextNode()
1457 PASS TreeWalker must be primary interface of document.createTreeWalker(document. body, NodeFilter.SHOW_ALL, null, false)
1458 PASS Stringification of document.createTreeWalker(document.body, NodeFilter.SHOW _ALL, null, false)
1459 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "root" with the proper type (0)
1460 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "whatToShow" with the proper type (1 )
1461 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "filter" with the proper type (2)
1462 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "currentNode" with the proper type ( 3)
1463 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "parentNode" with the proper type (4 )
1464 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "firstChild" with the proper type (5 )
1465 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "lastChild" with the proper type (6)
1466 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "previousSibling" with the proper ty pe (7)
1467 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "nextSibling" with the proper type ( 8)
1468 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "previousNode" with the proper type (9)
1469 PASS TreeWalker interface: document.createTreeWalker(document.body, NodeFilter.S HOW_ALL, null, false) must inherit property "nextNode" with the proper type (10)
1470 FAIL NodeFilter interface: existence and properties of interface object assert_e quals: prototype of self's property "NodeFilter" is not Object.prototype expecte d (object) object "[object Object]" but got (function) function "function () {}"
1471 PASS NodeFilter interface object name
1472 FAIL NodeFilter interface: existence and properties of interface prototype objec t assert_false: NodeFilter should not have a "prototype" property expected false got true
1473 FAIL NodeFilter interface: existence and properties of interface prototype objec t's "constructor" property assert_false: NodeFilter should not have a "prototype " property expected false got true
1474 PASS NodeFilter interface: constant FILTER_ACCEPT on interface object
1475 FAIL NodeFilter interface: constant FILTER_ACCEPT on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false g ot true
1476 PASS NodeFilter interface: constant FILTER_REJECT on interface object
1477 FAIL NodeFilter interface: constant FILTER_REJECT on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false g ot true
1478 PASS NodeFilter interface: constant FILTER_SKIP on interface object
1479 FAIL NodeFilter interface: constant FILTER_SKIP on interface prototype object as sert_false: NodeFilter should not have a "prototype" property expected false got true
1480 PASS NodeFilter interface: constant SHOW_ALL on interface object
1481 FAIL NodeFilter interface: constant SHOW_ALL on interface prototype object asser t_false: NodeFilter should not have a "prototype" property expected false got tr ue
1482 PASS NodeFilter interface: constant SHOW_ELEMENT on interface object
1483 FAIL NodeFilter interface: constant SHOW_ELEMENT on interface prototype object a ssert_false: NodeFilter should not have a "prototype" property expected false go t true
1484 PASS NodeFilter interface: constant SHOW_ATTRIBUTE on interface object
1485 FAIL NodeFilter interface: constant SHOW_ATTRIBUTE on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false got true
1486 PASS NodeFilter interface: constant SHOW_TEXT on interface object
1487 FAIL NodeFilter interface: constant SHOW_TEXT on interface prototype object asse rt_false: NodeFilter should not have a "prototype" property expected false got t rue
1488 PASS NodeFilter interface: constant SHOW_CDATA_SECTION on interface object
1489 FAIL NodeFilter interface: constant SHOW_CDATA_SECTION on interface prototype ob ject assert_false: NodeFilter should not have a "prototype" property expected fa lse got true
1490 PASS NodeFilter interface: constant SHOW_ENTITY_REFERENCE on interface object
1491 FAIL NodeFilter interface: constant SHOW_ENTITY_REFERENCE on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false got true
1492 PASS NodeFilter interface: constant SHOW_ENTITY on interface object
1493 FAIL NodeFilter interface: constant SHOW_ENTITY on interface prototype object as sert_false: NodeFilter should not have a "prototype" property expected false got true
1494 PASS NodeFilter interface: constant SHOW_PROCESSING_INSTRUCTION on interface obj ect
1495 FAIL NodeFilter interface: constant SHOW_PROCESSING_INSTRUCTION on interface pro totype object assert_false: NodeFilter should not have a "prototype" property ex pected false got true
1496 PASS NodeFilter interface: constant SHOW_COMMENT on interface object
1497 FAIL NodeFilter interface: constant SHOW_COMMENT on interface prototype object a ssert_false: NodeFilter should not have a "prototype" property expected false go t true
1498 PASS NodeFilter interface: constant SHOW_DOCUMENT on interface object
1499 FAIL NodeFilter interface: constant SHOW_DOCUMENT on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false g ot true
1500 PASS NodeFilter interface: constant SHOW_DOCUMENT_TYPE on interface object
1501 FAIL NodeFilter interface: constant SHOW_DOCUMENT_TYPE on interface prototype ob ject assert_false: NodeFilter should not have a "prototype" property expected fa lse got true
1502 PASS NodeFilter interface: constant SHOW_DOCUMENT_FRAGMENT on interface object
1503 FAIL NodeFilter interface: constant SHOW_DOCUMENT_FRAGMENT on interface prototyp e object assert_false: NodeFilter should not have a "prototype" property expecte d false got true
1504 PASS NodeFilter interface: constant SHOW_NOTATION on interface object
1505 FAIL NodeFilter interface: constant SHOW_NOTATION on interface prototype object assert_false: NodeFilter should not have a "prototype" property expected false g ot true
1506 FAIL NodeFilter interface: operation acceptNode(Node) assert_false: NodeFilter s hould not have a "prototype" property expected false got true
1507 PASS DOMTokenList interface: existence and properties of interface object
1508 PASS DOMTokenList interface object length
1509 PASS DOMTokenList interface object name
1510 FAIL DOMTokenList interface: existence and properties of interface prototype obj ect assert_equals: class string of DOMTokenList.prototype expected "[object DOMT okenListPrototype]" but got "[object DOMTokenList]"
1511 PASS DOMTokenList interface: existence and properties of interface prototype obj ect's "constructor" property
1512 PASS DOMTokenList interface: attribute length
1513 PASS DOMTokenList interface: operation item(unsigned long)
1514 PASS DOMTokenList interface: operation contains(DOMString)
1515 PASS DOMTokenList interface: operation add(DOMString)
1516 PASS DOMTokenList interface: operation remove(DOMString)
1517 PASS DOMTokenList interface: operation toggle(DOMString,boolean)
1518 FAIL DOMTokenList interface: operation replace(DOMString,DOMString) assert_own_p roperty: interface prototype object missing non-static operation expected proper ty "replace" missing
1519 PASS DOMTokenList interface: operation supports(DOMString)
1520 PASS DOMTokenList interface: attribute value
1521 PASS DOMTokenList interface: stringifier
1522 PASS DOMTokenList must be primary interface of document.body.classList
1523 PASS Stringification of document.body.classList
1524 PASS DOMTokenList interface: document.body.classList must inherit property "leng th" with the proper type (0)
1525 PASS DOMTokenList interface: document.body.classList must inherit property "item " with the proper type (1)
1526 PASS DOMTokenList interface: calling item(unsigned long) on document.body.classL ist with too few arguments must throw TypeError
1527 PASS DOMTokenList interface: document.body.classList must inherit property "cont ains" with the proper type (2)
1528 PASS DOMTokenList interface: calling contains(DOMString) on document.body.classL ist with too few arguments must throw TypeError
1529 PASS DOMTokenList interface: document.body.classList must inherit property "add" with the proper type (3)
1530 PASS DOMTokenList interface: calling add(DOMString) on document.body.classList w ith too few arguments must throw TypeError
1531 PASS DOMTokenList interface: document.body.classList must inherit property "remo ve" with the proper type (4)
1532 PASS DOMTokenList interface: calling remove(DOMString) on document.body.classLis t with too few arguments must throw TypeError
1533 PASS DOMTokenList interface: document.body.classList must inherit property "togg le" with the proper type (5)
1534 PASS DOMTokenList interface: calling toggle(DOMString,boolean) on document.body. classList with too few arguments must throw TypeError
1535 FAIL DOMTokenList interface: document.body.classList must inherit property "repl ace" with the proper type (6) assert_inherits: property "replace" not found in p rototype chain
1536 FAIL DOMTokenList interface: calling replace(DOMString,DOMString) on document.bo dy.classList with too few arguments must throw TypeError assert_inherits: proper ty "replace" not found in prototype chain
1537 PASS DOMTokenList interface: document.body.classList must inherit property "supp orts" with the proper type (7)
1538 PASS DOMTokenList interface: calling supports(DOMString) on document.body.classL ist with too few arguments must throw TypeError
1539 PASS DOMTokenList interface: document.body.classList must inherit property "valu e" with the proper type (8)
1540 Harness: the test ran to completion.
1541
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698