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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/win/external/wpt/dom/interfaces-expected.txt

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

Powered by Google App Engine
This is Rietveld 408576698