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

Side by Side Diff: LayoutTests/fast/dom/wrapper-classes-expected.txt

Issue 1017733003: [DO NOT LAND] Set @@toStringTag for DOM object prototypes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test expectations Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 This tests wrapper class names for JavaScript. 1 This tests wrapper class names for JavaScript.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS successfullyParsed is true 6 PASS successfullyParsed is true
7 7
8 TEST COMPLETE 8 TEST COMPLETE
9 Basics 9 Basics
10 10
11 PASS classString(document.createAttribute('x')) is "Attr" 11 PASS classString(document.createAttribute('x')) is "Attr"
12 FAIL classString(document.createAttribute('x').__proto__) should be AttrPrototyp e. Was Object. 12 PASS classString(document.createAttribute('x').__proto__) is "Attr"
13 PASS classString(document.createAttribute('x').constructor) is "Function" 13 PASS classString(document.createAttribute('x').constructor) is "Function"
14 PASS document.createAttribute('x').constructor.name is "Attr" 14 PASS document.createAttribute('x').constructor.name is "Attr"
15 PASS classString(document.createComment('')) is "Comment" 15 PASS classString(document.createComment('')) is "Comment"
16 FAIL classString(document.createComment('').__proto__) should be CommentPrototyp e. Was Object. 16 PASS classString(document.createComment('').__proto__) is "Comment"
17 PASS classString(document.createComment('').constructor) is "Function" 17 PASS classString(document.createComment('').constructor) is "Function"
18 PASS document.createComment('').constructor.name is "Comment" 18 PASS document.createComment('').constructor.name is "Comment"
19 PASS classString(document.createDocumentFragment()) is "DocumentFragment" 19 PASS classString(document.createDocumentFragment()) is "DocumentFragment"
20 FAIL classString(document.createDocumentFragment().__proto__) should be Document FragmentPrototype. Was Object. 20 PASS classString(document.createDocumentFragment().__proto__) is "DocumentFragme nt"
21 PASS classString(document.createDocumentFragment().constructor) is "Function" 21 PASS classString(document.createDocumentFragment().constructor) is "Function"
22 PASS document.createDocumentFragment().constructor.name is "DocumentFragment" 22 PASS document.createDocumentFragment().constructor.name is "DocumentFragment"
23 PASS classString(document.implementation) is "DOMImplementation" 23 PASS classString(document.implementation) is "DOMImplementation"
24 FAIL classString(document.implementation.__proto__) should be DOMImplementationP rototype. Was Object. 24 PASS classString(document.implementation.__proto__) is "DOMImplementation"
25 PASS classString(document.implementation.constructor) is "Function" 25 PASS classString(document.implementation.constructor) is "Function"
26 PASS document.implementation.constructor.name is "DOMImplementation" 26 PASS document.implementation.constructor.name is "DOMImplementation"
27 PASS classString(root.attributes) is "NamedNodeMap" 27 PASS classString(root.attributes) is "NamedNodeMap"
28 FAIL classString(root.attributes.__proto__) should be NamedNodeMapPrototype. Was Object. 28 PASS classString(root.attributes.__proto__) is "NamedNodeMap"
29 PASS classString(root.attributes.constructor) is "Function" 29 PASS classString(root.attributes.constructor) is "Function"
30 PASS root.attributes.constructor.name is "NamedNodeMap" 30 PASS root.attributes.constructor.name is "NamedNodeMap"
31 PASS classString(document.createNodeIterator(root, 0, null, false)) is "NodeIter ator" 31 PASS classString(document.createNodeIterator(root, 0, null, false)) is "NodeIter ator"
32 FAIL classString(document.createNodeIterator(root, 0, null, false).__proto__) sh ould be NodeIteratorPrototype. Was Object. 32 PASS classString(document.createNodeIterator(root, 0, null, false).__proto__) is "NodeIterator"
33 PASS classString(document.createNodeIterator(root, 0, null, false).constructor) is "Function" 33 PASS classString(document.createNodeIterator(root, 0, null, false).constructor) is "Function"
34 PASS document.createNodeIterator(root, 0, null, false).constructor.name is "Node Iterator" 34 PASS document.createNodeIterator(root, 0, null, false).constructor.name is "Node Iterator"
35 PASS classString(document.getElementsByTagName('div')) is "HTMLCollection" 35 PASS classString(document.getElementsByTagName('div')) is "HTMLCollection"
36 FAIL classString(document.getElementsByTagName('div').__proto__) should be HTMLC ollectionPrototype. Was Object. 36 PASS classString(document.getElementsByTagName('div').__proto__) is "HTMLCollect ion"
37 PASS classString(document.getElementsByTagName('div').constructor) is "Function" 37 PASS classString(document.getElementsByTagName('div').constructor) is "Function"
38 PASS document.getElementsByTagName('div').constructor.name is "HTMLCollection" 38 PASS document.getElementsByTagName('div').constructor.name is "HTMLCollection"
39 PASS classString(document.createRange()) is "Range" 39 PASS classString(document.createRange()) is "Range"
40 FAIL classString(document.createRange().__proto__) should be RangePrototype. Was Object. 40 PASS classString(document.createRange().__proto__) is "Range"
41 PASS classString(document.createRange().constructor) is "Function" 41 PASS classString(document.createRange().constructor) is "Function"
42 PASS document.createRange().constructor.name is "Range" 42 PASS document.createRange().constructor.name is "Range"
43 PASS classString(document.createTextNode('')) is "Text" 43 PASS classString(document.createTextNode('')) is "Text"
44 FAIL classString(document.createTextNode('').__proto__) should be TextPrototype. Was Object. 44 PASS classString(document.createTextNode('').__proto__) is "Text"
45 PASS classString(document.createTextNode('').constructor) is "Function" 45 PASS classString(document.createTextNode('').constructor) is "Function"
46 PASS document.createTextNode('').constructor.name is "Text" 46 PASS document.createTextNode('').constructor.name is "Text"
47 PASS classString(document.createTreeWalker(root, 0, null, false)) is "TreeWalker " 47 PASS classString(document.createTreeWalker(root, 0, null, false)) is "TreeWalker "
48 FAIL classString(document.createTreeWalker(root, 0, null, false).__proto__) shou ld be TreeWalkerPrototype. Was Object. 48 PASS classString(document.createTreeWalker(root, 0, null, false).__proto__) is " TreeWalker"
49 PASS classString(document.createTreeWalker(root, 0, null, false).constructor) is "Function" 49 PASS classString(document.createTreeWalker(root, 0, null, false).constructor) is "Function"
50 PASS document.createTreeWalker(root, 0, null, false).constructor.name is "TreeWa lker" 50 PASS document.createTreeWalker(root, 0, null, false).constructor.name is "TreeWa lker"
51 51
52 XML 52 XML
53 53
54 PASS classString(xmlDocument) is "XMLDocument" 54 PASS classString(xmlDocument) is "XMLDocument"
55 FAIL classString(xmlDocument.__proto__) should be XMLDocumentPrototype. Was Obje ct. 55 PASS classString(xmlDocument.__proto__) is "XMLDocument"
56 PASS classString(xmlDocument.constructor) is "Function" 56 PASS classString(xmlDocument.constructor) is "Function"
57 PASS xmlDocument.constructor.name is "XMLDocument" 57 PASS xmlDocument.constructor.name is "XMLDocument"
58 PASS classString(xmlDocument.createCDATASection('')) is "CDATASection" 58 PASS classString(xmlDocument.createCDATASection('')) is "CDATASection"
59 FAIL classString(xmlDocument.createCDATASection('').__proto__) should be CDATASe ctionPrototype. Was Object. 59 PASS classString(xmlDocument.createCDATASection('').__proto__) is "CDATASection"
60 PASS classString(xmlDocument.createCDATASection('').constructor) is "Function" 60 PASS classString(xmlDocument.createCDATASection('').constructor) is "Function"
61 PASS xmlDocument.createCDATASection('').constructor.name is "CDATASection" 61 PASS xmlDocument.createCDATASection('').constructor.name is "CDATASection"
62 PASS classString(xmlDocument.createElementNS('x', 'x', 'x')) is "Element" 62 PASS classString(xmlDocument.createElementNS('x', 'x', 'x')) is "Element"
63 FAIL classString(xmlDocument.createElementNS('x', 'x', 'x').__proto__) should be ElementPrototype. Was Object. 63 PASS classString(xmlDocument.createElementNS('x', 'x', 'x').__proto__) is "Eleme nt"
64 PASS classString(xmlDocument.createElementNS('x', 'x', 'x').constructor) is "Fun ction" 64 PASS classString(xmlDocument.createElementNS('x', 'x', 'x').constructor) is "Fun ction"
65 PASS xmlDocument.createElementNS('x', 'x', 'x').constructor.name is "Element" 65 PASS xmlDocument.createElementNS('x', 'x', 'x').constructor.name is "Element"
66 PASS classString(xmlDocument.createProcessingInstruction('x', '')) is "Processin gInstruction" 66 PASS classString(xmlDocument.createProcessingInstruction('x', '')) is "Processin gInstruction"
67 FAIL classString(xmlDocument.createProcessingInstruction('x', '').__proto__) sho uld be ProcessingInstructionPrototype. Was Object. 67 PASS classString(xmlDocument.createProcessingInstruction('x', '').__proto__) is "ProcessingInstruction"
68 PASS classString(xmlDocument.createProcessingInstruction('x', '').constructor) i s "Function" 68 PASS classString(xmlDocument.createProcessingInstruction('x', '').constructor) i s "Function"
69 PASS xmlDocument.createProcessingInstruction('x', '').constructor.name is "Proce ssingInstruction" 69 PASS xmlDocument.createProcessingInstruction('x', '').constructor.name is "Proce ssingInstruction"
70 70
71 Events 71 Events
72 72
73 PASS classString(document.createEvent('Event')) is "Event" 73 PASS classString(document.createEvent('Event')) is "Event"
74 FAIL classString(document.createEvent('Event').__proto__) should be EventPrototy pe. Was Object. 74 PASS classString(document.createEvent('Event').__proto__) is "Event"
75 PASS classString(document.createEvent('Event').constructor) is "Function" 75 PASS classString(document.createEvent('Event').constructor) is "Function"
76 PASS document.createEvent('Event').constructor.name is "Event" 76 PASS document.createEvent('Event').constructor.name is "Event"
77 PASS classString(document.createEvent('KeyboardEvent')) is "KeyboardEvent" 77 PASS classString(document.createEvent('KeyboardEvent')) is "KeyboardEvent"
78 FAIL classString(document.createEvent('KeyboardEvent').__proto__) should be Keyb oardEventPrototype. Was Object. 78 PASS classString(document.createEvent('KeyboardEvent').__proto__) is "KeyboardEv ent"
79 PASS classString(document.createEvent('KeyboardEvent').constructor) is "Function " 79 PASS classString(document.createEvent('KeyboardEvent').constructor) is "Function "
80 PASS document.createEvent('KeyboardEvent').constructor.name is "KeyboardEvent" 80 PASS document.createEvent('KeyboardEvent').constructor.name is "KeyboardEvent"
81 PASS classString(document.createEvent('MouseEvent')) is "MouseEvent" 81 PASS classString(document.createEvent('MouseEvent')) is "MouseEvent"
82 FAIL classString(document.createEvent('MouseEvent').__proto__) should be MouseEv entPrototype. Was Object. 82 PASS classString(document.createEvent('MouseEvent').__proto__) is "MouseEvent"
83 PASS classString(document.createEvent('MouseEvent').constructor) is "Function" 83 PASS classString(document.createEvent('MouseEvent').constructor) is "Function"
84 PASS document.createEvent('MouseEvent').constructor.name is "MouseEvent" 84 PASS document.createEvent('MouseEvent').constructor.name is "MouseEvent"
85 PASS classString(document.createEvent('MutationEvent')) is "MutationEvent" 85 PASS classString(document.createEvent('MutationEvent')) is "MutationEvent"
86 FAIL classString(document.createEvent('MutationEvent').__proto__) should be Muta tionEventPrototype. Was Object. 86 PASS classString(document.createEvent('MutationEvent').__proto__) is "MutationEv ent"
87 PASS classString(document.createEvent('MutationEvent').constructor) is "Function " 87 PASS classString(document.createEvent('MutationEvent').constructor) is "Function "
88 PASS document.createEvent('MutationEvent').constructor.name is "MutationEvent" 88 PASS document.createEvent('MutationEvent').constructor.name is "MutationEvent"
89 PASS classString(document.createEvent('TextEvent')) is "TextEvent" 89 PASS classString(document.createEvent('TextEvent')) is "TextEvent"
90 FAIL classString(document.createEvent('TextEvent').__proto__) should be TextEven tPrototype. Was Object. 90 PASS classString(document.createEvent('TextEvent').__proto__) is "TextEvent"
91 PASS classString(document.createEvent('TextEvent').constructor) is "Function" 91 PASS classString(document.createEvent('TextEvent').constructor) is "Function"
92 PASS document.createEvent('TextEvent').constructor.name is "TextEvent" 92 PASS document.createEvent('TextEvent').constructor.name is "TextEvent"
93 PASS classString(document.createEvent('UIEvent')) is "UIEvent" 93 PASS classString(document.createEvent('UIEvent')) is "UIEvent"
94 FAIL classString(document.createEvent('UIEvent').__proto__) should be UIEventPro totype. Was Object. 94 PASS classString(document.createEvent('UIEvent').__proto__) is "UIEvent"
95 PASS classString(document.createEvent('UIEvent').constructor) is "Function" 95 PASS classString(document.createEvent('UIEvent').constructor) is "Function"
96 PASS document.createEvent('UIEvent').constructor.name is "UIEvent" 96 PASS document.createEvent('UIEvent').constructor.name is "UIEvent"
97 PASS classString(document.createEvent('WheelEvent')) is "WheelEvent" 97 PASS classString(document.createEvent('WheelEvent')) is "WheelEvent"
98 FAIL classString(document.createEvent('WheelEvent').__proto__) should be WheelEv entPrototype. Was Object. 98 PASS classString(document.createEvent('WheelEvent').__proto__) is "WheelEvent"
99 PASS classString(document.createEvent('WheelEvent').constructor) is "Function" 99 PASS classString(document.createEvent('WheelEvent').constructor) is "Function"
100 PASS document.createEvent('WheelEvent').constructor.name is "WheelEvent" 100 PASS document.createEvent('WheelEvent').constructor.name is "WheelEvent"
101 101
102 CSS DOM 102 CSS DOM
103 103
104 PASS classString(document.styleSheets) is "StyleSheetList" 104 PASS classString(document.styleSheets) is "StyleSheetList"
105 FAIL classString(document.styleSheets.__proto__) should be StyleSheetListPrototy pe. Was Object. 105 PASS classString(document.styleSheets.__proto__) is "StyleSheetList"
106 PASS classString(document.styleSheets.constructor) is "Function" 106 PASS classString(document.styleSheets.constructor) is "Function"
107 PASS document.styleSheets.constructor.name is "StyleSheetList" 107 PASS document.styleSheets.constructor.name is "StyleSheetList"
108 PASS classString(stylesheet) is "CSSStyleSheet" 108 PASS classString(stylesheet) is "CSSStyleSheet"
109 FAIL classString(stylesheet.__proto__) should be CSSStyleSheetPrototype. Was Obj ect. 109 PASS classString(stylesheet.__proto__) is "CSSStyleSheet"
110 PASS classString(stylesheet.constructor) is "Function" 110 PASS classString(stylesheet.constructor) is "Function"
111 PASS stylesheet.constructor.name is "CSSStyleSheet" 111 PASS stylesheet.constructor.name is "CSSStyleSheet"
112 PASS classString(stylesheet.cssRules) is "CSSRuleList" 112 PASS classString(stylesheet.cssRules) is "CSSRuleList"
113 FAIL classString(stylesheet.cssRules.__proto__) should be CSSRuleListPrototype. Was Object. 113 PASS classString(stylesheet.cssRules.__proto__) is "CSSRuleList"
114 PASS classString(stylesheet.cssRules.constructor) is "Function" 114 PASS classString(stylesheet.cssRules.constructor) is "Function"
115 PASS stylesheet.cssRules.constructor.name is "CSSRuleList" 115 PASS stylesheet.cssRules.constructor.name is "CSSRuleList"
116 PASS classString(stylesheet.cssRules.item(0)) is "CSSStyleRule" 116 PASS classString(stylesheet.cssRules.item(0)) is "CSSStyleRule"
117 FAIL classString(stylesheet.cssRules.item(0).__proto__) should be CSSStyleRulePr ototype. Was Object. 117 PASS classString(stylesheet.cssRules.item(0).__proto__) is "CSSStyleRule"
118 PASS classString(stylesheet.cssRules.item(0).constructor) is "Function" 118 PASS classString(stylesheet.cssRules.item(0).constructor) is "Function"
119 PASS stylesheet.cssRules.item(0).constructor.name is "CSSStyleRule" 119 PASS stylesheet.cssRules.item(0).constructor.name is "CSSStyleRule"
120 PASS classString(stylesheet.cssRules.item(0).style) is "CSSStyleDeclaration" 120 PASS classString(stylesheet.cssRules.item(0).style) is "CSSStyleDeclaration"
121 FAIL classString(stylesheet.cssRules.item(0).style.__proto__) should be CSSStyle DeclarationPrototype. Was Object. 121 PASS classString(stylesheet.cssRules.item(0).style.__proto__) is "CSSStyleDeclar ation"
122 PASS classString(stylesheet.cssRules.item(0).style.constructor) is "Function" 122 PASS classString(stylesheet.cssRules.item(0).style.constructor) is "Function"
123 PASS stylesheet.cssRules.item(0).style.constructor.name is "CSSStyleDeclaration" 123 PASS stylesheet.cssRules.item(0).style.constructor.name is "CSSStyleDeclaration"
124 PASS classString(stylesheet.media) is "MediaList" 124 PASS classString(stylesheet.media) is "MediaList"
125 FAIL classString(stylesheet.media.__proto__) should be MediaListPrototype. Was O bject. 125 PASS classString(stylesheet.media.__proto__) is "MediaList"
126 PASS classString(stylesheet.media.constructor) is "Function" 126 PASS classString(stylesheet.media.constructor) is "Function"
127 PASS stylesheet.media.constructor.name is "MediaList" 127 PASS stylesheet.media.constructor.name is "MediaList"
128 128
129 XPath 129 XPath
130 130
131 PASS classString(document.createExpression('//*', document.createNSResolver(docu ment))) is "XPathExpression" 131 PASS classString(document.createExpression('//*', document.createNSResolver(docu ment))) is "XPathExpression"
132 FAIL classString(document.createExpression('//*', document.createNSResolver(docu ment)).__proto__) should be XPathExpressionPrototype. Was Object. 132 PASS classString(document.createExpression('//*', document.createNSResolver(docu ment)).__proto__) is "XPathExpression"
133 PASS classString(document.createExpression('//*', document.createNSResolver(docu ment)).constructor) is "Function" 133 PASS classString(document.createExpression('//*', document.createNSResolver(docu ment)).constructor) is "Function"
134 PASS document.createExpression('//*', document.createNSResolver(document)).const ructor.name is "XPathExpression" 134 PASS document.createExpression('//*', document.createNSResolver(document)).const ructor.name is "XPathExpression"
135 PASS classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null)) is "XPathResult" 135 PASS classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null)) is "XPathResult"
136 FAIL classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null).__proto__) should be XPathResultPrototype. Was Object. 136 PASS classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null).__proto__) is "XPathResult"
137 PASS classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null).constructor) is "Function" 137 PASS classString(document.evaluate('//*', document, document.createNSResolver(do cument), 0, null).constructor) is "Function"
138 PASS document.evaluate('//*', document, document.createNSResolver(document), 0, null).constructor.name is "XPathResult" 138 PASS document.evaluate('//*', document, document.createNSResolver(document), 0, null).constructor.name is "XPathResult"
139 139
140 Other 140 Other
141 141
142 FAIL classString(window) should be Window. Was global. 142 PASS classString(window) is "Window"
143 FAIL classString(window.__proto__) should be WindowPrototype. Was Object. 143 PASS classString(window.__proto__) is "Window"
144 PASS classString(window.constructor) is "Function" 144 PASS classString(window.constructor) is "Function"
145 PASS window.constructor.name is "Window" 145 PASS window.constructor.name is "Window"
146 146
147 HTML DOM 147 HTML DOM
148 148
149 PASS classString(root.children) is "HTMLCollection" 149 PASS classString(root.children) is "HTMLCollection"
150 FAIL classString(root.children.__proto__) should be HTMLCollectionPrototype. Was Object. 150 PASS classString(root.children.__proto__) is "HTMLCollection"
151 PASS classString(root.children.constructor) is "Function" 151 PASS classString(root.children.constructor) is "Function"
152 PASS root.children.constructor.name is "HTMLCollection" 152 PASS root.children.constructor.name is "HTMLCollection"
153 PASS classString(document) is "HTMLDocument" 153 PASS classString(document) is "HTMLDocument"
154 FAIL classString(document.__proto__) should be HTMLDocumentPrototype. Was Object . 154 PASS classString(document.__proto__) is "HTMLDocument"
155 PASS classString(document.constructor) is "Function" 155 PASS classString(document.constructor) is "Function"
156 PASS document.constructor.name is "HTMLDocument" 156 PASS document.constructor.name is "HTMLDocument"
157 PASS classString(document.createElement('select').options) is "HTMLOptionsCollec tion" 157 PASS classString(document.createElement('select').options) is "HTMLOptionsCollec tion"
158 FAIL classString(document.createElement('select').options.__proto__) should be H TMLOptionsCollectionPrototype. Was Object. 158 PASS classString(document.createElement('select').options.__proto__) is "HTMLOpt ionsCollection"
159 PASS classString(document.createElement('select').options.constructor) is "Funct ion" 159 PASS classString(document.createElement('select').options.constructor) is "Funct ion"
160 PASS document.createElement('select').options.constructor.name is "HTMLOptionsCo llection" 160 PASS document.createElement('select').options.constructor.name is "HTMLOptionsCo llection"
161 161
162 HTML Elements 162 HTML Elements
163 163
164 PASS tagClassString('a') is "HTMLAnchorElement" 164 PASS tagClassString('a') is "HTMLAnchorElement"
165 FAIL tagPrototypeClassString('a') should be HTMLAnchorElementPrototype. Was Obje ct. 165 PASS tagPrototypeClassString('a') is "HTMLAnchorElement"
166 PASS tagConstructorClassString('a') is "Function" 166 PASS tagConstructorClassString('a') is "Function"
167 PASS tagConstructorName('a') is "HTMLAnchorElement" 167 PASS tagConstructorName('a') is "HTMLAnchorElement"
168 PASS tagClassString('abbr') is "HTMLElement" 168 PASS tagClassString('abbr') is "HTMLElement"
169 FAIL tagPrototypeClassString('abbr') should be HTMLElementPrototype. Was Object. 169 PASS tagPrototypeClassString('abbr') is "HTMLElement"
170 PASS tagConstructorClassString('abbr') is "Function" 170 PASS tagConstructorClassString('abbr') is "Function"
171 PASS tagConstructorName('abbr') is "HTMLElement" 171 PASS tagConstructorName('abbr') is "HTMLElement"
172 PASS tagClassString('acronym') is "HTMLElement" 172 PASS tagClassString('acronym') is "HTMLElement"
173 FAIL tagPrototypeClassString('acronym') should be HTMLElementPrototype. Was Obje ct. 173 PASS tagPrototypeClassString('acronym') is "HTMLElement"
174 PASS tagConstructorClassString('acronym') is "Function" 174 PASS tagConstructorClassString('acronym') is "Function"
175 PASS tagConstructorName('acronym') is "HTMLElement" 175 PASS tagConstructorName('acronym') is "HTMLElement"
176 PASS tagClassString('address') is "HTMLElement" 176 PASS tagClassString('address') is "HTMLElement"
177 FAIL tagPrototypeClassString('address') should be HTMLElementPrototype. Was Obje ct. 177 PASS tagPrototypeClassString('address') is "HTMLElement"
178 PASS tagConstructorClassString('address') is "Function" 178 PASS tagConstructorClassString('address') is "Function"
179 PASS tagConstructorName('address') is "HTMLElement" 179 PASS tagConstructorName('address') is "HTMLElement"
180 PASS tagClassString('applet') is "HTMLAppletElement" 180 PASS tagClassString('applet') is "HTMLAppletElement"
181 FAIL tagPrototypeClassString('applet') should be HTMLAppletElementPrototype. Was Object. 181 PASS tagPrototypeClassString('applet') is "HTMLAppletElement"
182 PASS tagConstructorClassString('applet') is "Function" 182 PASS tagConstructorClassString('applet') is "Function"
183 PASS tagConstructorName('applet') is "HTMLAppletElement" 183 PASS tagConstructorName('applet') is "HTMLAppletElement"
184 PASS tagClassString('area') is "HTMLAreaElement" 184 PASS tagClassString('area') is "HTMLAreaElement"
185 FAIL tagPrototypeClassString('area') should be HTMLAreaElementPrototype. Was Obj ect. 185 PASS tagPrototypeClassString('area') is "HTMLAreaElement"
186 PASS tagConstructorClassString('area') is "Function" 186 PASS tagConstructorClassString('area') is "Function"
187 PASS tagConstructorName('area') is "HTMLAreaElement" 187 PASS tagConstructorName('area') is "HTMLAreaElement"
188 PASS tagClassString('article') is "HTMLElement" 188 PASS tagClassString('article') is "HTMLElement"
189 FAIL tagPrototypeClassString('article') should be HTMLElementPrototype. Was Obje ct. 189 PASS tagPrototypeClassString('article') is "HTMLElement"
190 PASS tagConstructorClassString('article') is "Function" 190 PASS tagConstructorClassString('article') is "Function"
191 PASS tagConstructorName('article') is "HTMLElement" 191 PASS tagConstructorName('article') is "HTMLElement"
192 PASS tagClassString('aside') is "HTMLElement" 192 PASS tagClassString('aside') is "HTMLElement"
193 FAIL tagPrototypeClassString('aside') should be HTMLElementPrototype. Was Object . 193 PASS tagPrototypeClassString('aside') is "HTMLElement"
194 PASS tagConstructorClassString('aside') is "Function" 194 PASS tagConstructorClassString('aside') is "Function"
195 PASS tagConstructorName('aside') is "HTMLElement" 195 PASS tagConstructorName('aside') is "HTMLElement"
196 PASS tagClassString('b') is "HTMLElement" 196 PASS tagClassString('b') is "HTMLElement"
197 FAIL tagPrototypeClassString('b') should be HTMLElementPrototype. Was Object. 197 PASS tagPrototypeClassString('b') is "HTMLElement"
198 PASS tagConstructorClassString('b') is "Function" 198 PASS tagConstructorClassString('b') is "Function"
199 PASS tagConstructorName('b') is "HTMLElement" 199 PASS tagConstructorName('b') is "HTMLElement"
200 PASS tagClassString('base') is "HTMLBaseElement" 200 PASS tagClassString('base') is "HTMLBaseElement"
201 FAIL tagPrototypeClassString('base') should be HTMLBaseElementPrototype. Was Obj ect. 201 PASS tagPrototypeClassString('base') is "HTMLBaseElement"
202 PASS tagConstructorClassString('base') is "Function" 202 PASS tagConstructorClassString('base') is "Function"
203 PASS tagConstructorName('base') is "HTMLBaseElement" 203 PASS tagConstructorName('base') is "HTMLBaseElement"
204 PASS tagClassString('basefont') is "HTMLElement" 204 PASS tagClassString('basefont') is "HTMLElement"
205 FAIL tagPrototypeClassString('basefont') should be HTMLElementPrototype. Was Obj ect. 205 PASS tagPrototypeClassString('basefont') is "HTMLElement"
206 PASS tagConstructorClassString('basefont') is "Function" 206 PASS tagConstructorClassString('basefont') is "Function"
207 PASS tagConstructorName('basefont') is "HTMLElement" 207 PASS tagConstructorName('basefont') is "HTMLElement"
208 PASS tagClassString('bdo') is "HTMLElement" 208 PASS tagClassString('bdo') is "HTMLElement"
209 FAIL tagPrototypeClassString('bdo') should be HTMLElementPrototype. Was Object. 209 PASS tagPrototypeClassString('bdo') is "HTMLElement"
210 PASS tagConstructorClassString('bdo') is "Function" 210 PASS tagConstructorClassString('bdo') is "Function"
211 PASS tagConstructorName('bdo') is "HTMLElement" 211 PASS tagConstructorName('bdo') is "HTMLElement"
212 PASS tagClassString('bgsound') is "HTMLUnknownElement" 212 PASS tagClassString('bgsound') is "HTMLUnknownElement"
213 FAIL tagPrototypeClassString('bgsound') should be HTMLUnknownElementPrototype. W as Object. 213 PASS tagPrototypeClassString('bgsound') is "HTMLUnknownElement"
214 PASS tagConstructorClassString('bgsound') is "Function" 214 PASS tagConstructorClassString('bgsound') is "Function"
215 PASS tagConstructorName('bgsound') is "HTMLUnknownElement" 215 PASS tagConstructorName('bgsound') is "HTMLUnknownElement"
216 PASS tagClassString('big') is "HTMLElement" 216 PASS tagClassString('big') is "HTMLElement"
217 FAIL tagPrototypeClassString('big') should be HTMLElementPrototype. Was Object. 217 PASS tagPrototypeClassString('big') is "HTMLElement"
218 PASS tagConstructorClassString('big') is "Function" 218 PASS tagConstructorClassString('big') is "Function"
219 PASS tagConstructorName('big') is "HTMLElement" 219 PASS tagConstructorName('big') is "HTMLElement"
220 PASS tagClassString('blockquote') is "HTMLQuoteElement" 220 PASS tagClassString('blockquote') is "HTMLQuoteElement"
221 FAIL tagPrototypeClassString('blockquote') should be HTMLQuoteElementPrototype. Was Object. 221 PASS tagPrototypeClassString('blockquote') is "HTMLQuoteElement"
222 PASS tagConstructorClassString('blockquote') is "Function" 222 PASS tagConstructorClassString('blockquote') is "Function"
223 PASS tagConstructorName('blockquote') is "HTMLQuoteElement" 223 PASS tagConstructorName('blockquote') is "HTMLQuoteElement"
224 PASS tagClassString('body') is "HTMLBodyElement" 224 PASS tagClassString('body') is "HTMLBodyElement"
225 FAIL tagPrototypeClassString('body') should be HTMLBodyElementPrototype. Was Obj ect. 225 PASS tagPrototypeClassString('body') is "HTMLBodyElement"
226 PASS tagConstructorClassString('body') is "Function" 226 PASS tagConstructorClassString('body') is "Function"
227 PASS tagConstructorName('body') is "HTMLBodyElement" 227 PASS tagConstructorName('body') is "HTMLBodyElement"
228 PASS tagClassString('br') is "HTMLBRElement" 228 PASS tagClassString('br') is "HTMLBRElement"
229 FAIL tagPrototypeClassString('br') should be HTMLBRElementPrototype. Was Object. 229 PASS tagPrototypeClassString('br') is "HTMLBRElement"
230 PASS tagConstructorClassString('br') is "Function" 230 PASS tagConstructorClassString('br') is "Function"
231 PASS tagConstructorName('br') is "HTMLBRElement" 231 PASS tagConstructorName('br') is "HTMLBRElement"
232 PASS tagClassString('button') is "HTMLButtonElement" 232 PASS tagClassString('button') is "HTMLButtonElement"
233 FAIL tagPrototypeClassString('button') should be HTMLButtonElementPrototype. Was Object. 233 PASS tagPrototypeClassString('button') is "HTMLButtonElement"
234 PASS tagConstructorClassString('button') is "Function" 234 PASS tagConstructorClassString('button') is "Function"
235 PASS tagConstructorName('button') is "HTMLButtonElement" 235 PASS tagConstructorName('button') is "HTMLButtonElement"
236 PASS tagClassString('canvas') is "HTMLCanvasElement" 236 PASS tagClassString('canvas') is "HTMLCanvasElement"
237 FAIL tagPrototypeClassString('canvas') should be HTMLCanvasElementPrototype. Was Object. 237 PASS tagPrototypeClassString('canvas') is "HTMLCanvasElement"
238 PASS tagConstructorClassString('canvas') is "Function" 238 PASS tagConstructorClassString('canvas') is "Function"
239 PASS tagConstructorName('canvas') is "HTMLCanvasElement" 239 PASS tagConstructorName('canvas') is "HTMLCanvasElement"
240 PASS tagClassString('caption') is "HTMLTableCaptionElement" 240 PASS tagClassString('caption') is "HTMLTableCaptionElement"
241 FAIL tagPrototypeClassString('caption') should be HTMLTableCaptionElementPrototy pe. Was Object. 241 PASS tagPrototypeClassString('caption') is "HTMLTableCaptionElement"
242 PASS tagConstructorClassString('caption') is "Function" 242 PASS tagConstructorClassString('caption') is "Function"
243 PASS tagConstructorName('caption') is "HTMLTableCaptionElement" 243 PASS tagConstructorName('caption') is "HTMLTableCaptionElement"
244 PASS tagClassString('center') is "HTMLElement" 244 PASS tagClassString('center') is "HTMLElement"
245 FAIL tagPrototypeClassString('center') should be HTMLElementPrototype. Was Objec t. 245 PASS tagPrototypeClassString('center') is "HTMLElement"
246 PASS tagConstructorClassString('center') is "Function" 246 PASS tagConstructorClassString('center') is "Function"
247 PASS tagConstructorName('center') is "HTMLElement" 247 PASS tagConstructorName('center') is "HTMLElement"
248 PASS tagClassString('cite') is "HTMLElement" 248 PASS tagClassString('cite') is "HTMLElement"
249 FAIL tagPrototypeClassString('cite') should be HTMLElementPrototype. Was Object. 249 PASS tagPrototypeClassString('cite') is "HTMLElement"
250 PASS tagConstructorClassString('cite') is "Function" 250 PASS tagConstructorClassString('cite') is "Function"
251 PASS tagConstructorName('cite') is "HTMLElement" 251 PASS tagConstructorName('cite') is "HTMLElement"
252 PASS tagClassString('code') is "HTMLElement" 252 PASS tagClassString('code') is "HTMLElement"
253 FAIL tagPrototypeClassString('code') should be HTMLElementPrototype. Was Object. 253 PASS tagPrototypeClassString('code') is "HTMLElement"
254 PASS tagConstructorClassString('code') is "Function" 254 PASS tagConstructorClassString('code') is "Function"
255 PASS tagConstructorName('code') is "HTMLElement" 255 PASS tagConstructorName('code') is "HTMLElement"
256 PASS tagClassString('col') is "HTMLTableColElement" 256 PASS tagClassString('col') is "HTMLTableColElement"
257 FAIL tagPrototypeClassString('col') should be HTMLTableColElementPrototype. Was Object. 257 PASS tagPrototypeClassString('col') is "HTMLTableColElement"
258 PASS tagConstructorClassString('col') is "Function" 258 PASS tagConstructorClassString('col') is "Function"
259 PASS tagConstructorName('col') is "HTMLTableColElement" 259 PASS tagConstructorName('col') is "HTMLTableColElement"
260 PASS tagClassString('colgroup') is "HTMLTableColElement" 260 PASS tagClassString('colgroup') is "HTMLTableColElement"
261 FAIL tagPrototypeClassString('colgroup') should be HTMLTableColElementPrototype. Was Object. 261 PASS tagPrototypeClassString('colgroup') is "HTMLTableColElement"
262 PASS tagConstructorClassString('colgroup') is "Function" 262 PASS tagConstructorClassString('colgroup') is "Function"
263 PASS tagConstructorName('colgroup') is "HTMLTableColElement" 263 PASS tagConstructorName('colgroup') is "HTMLTableColElement"
264 PASS tagClassString('dd') is "HTMLElement" 264 PASS tagClassString('dd') is "HTMLElement"
265 FAIL tagPrototypeClassString('dd') should be HTMLElementPrototype. Was Object. 265 PASS tagPrototypeClassString('dd') is "HTMLElement"
266 PASS tagConstructorClassString('dd') is "Function" 266 PASS tagConstructorClassString('dd') is "Function"
267 PASS tagConstructorName('dd') is "HTMLElement" 267 PASS tagConstructorName('dd') is "HTMLElement"
268 PASS tagClassString('del') is "HTMLModElement" 268 PASS tagClassString('del') is "HTMLModElement"
269 FAIL tagPrototypeClassString('del') should be HTMLModElementPrototype. Was Objec t. 269 PASS tagPrototypeClassString('del') is "HTMLModElement"
270 PASS tagConstructorClassString('del') is "Function" 270 PASS tagConstructorClassString('del') is "Function"
271 PASS tagConstructorName('del') is "HTMLModElement" 271 PASS tagConstructorName('del') is "HTMLModElement"
272 PASS tagClassString('dfn') is "HTMLElement" 272 PASS tagClassString('dfn') is "HTMLElement"
273 FAIL tagPrototypeClassString('dfn') should be HTMLElementPrototype. Was Object. 273 PASS tagPrototypeClassString('dfn') is "HTMLElement"
274 PASS tagConstructorClassString('dfn') is "Function" 274 PASS tagConstructorClassString('dfn') is "Function"
275 PASS tagConstructorName('dfn') is "HTMLElement" 275 PASS tagConstructorName('dfn') is "HTMLElement"
276 PASS tagClassString('dir') is "HTMLDirectoryElement" 276 PASS tagClassString('dir') is "HTMLDirectoryElement"
277 FAIL tagPrototypeClassString('dir') should be HTMLDirectoryElementPrototype. Was Object. 277 PASS tagPrototypeClassString('dir') is "HTMLDirectoryElement"
278 PASS tagConstructorClassString('dir') is "Function" 278 PASS tagConstructorClassString('dir') is "Function"
279 PASS tagConstructorName('dir') is "HTMLDirectoryElement" 279 PASS tagConstructorName('dir') is "HTMLDirectoryElement"
280 PASS tagClassString('div') is "HTMLDivElement" 280 PASS tagClassString('div') is "HTMLDivElement"
281 FAIL tagPrototypeClassString('div') should be HTMLDivElementPrototype. Was Objec t. 281 PASS tagPrototypeClassString('div') is "HTMLDivElement"
282 PASS tagConstructorClassString('div') is "Function" 282 PASS tagConstructorClassString('div') is "Function"
283 PASS tagConstructorName('div') is "HTMLDivElement" 283 PASS tagConstructorName('div') is "HTMLDivElement"
284 PASS tagClassString('dl') is "HTMLDListElement" 284 PASS tagClassString('dl') is "HTMLDListElement"
285 FAIL tagPrototypeClassString('dl') should be HTMLDListElementPrototype. Was Obje ct. 285 PASS tagPrototypeClassString('dl') is "HTMLDListElement"
286 PASS tagConstructorClassString('dl') is "Function" 286 PASS tagConstructorClassString('dl') is "Function"
287 PASS tagConstructorName('dl') is "HTMLDListElement" 287 PASS tagConstructorName('dl') is "HTMLDListElement"
288 PASS tagClassString('dt') is "HTMLElement" 288 PASS tagClassString('dt') is "HTMLElement"
289 FAIL tagPrototypeClassString('dt') should be HTMLElementPrototype. Was Object. 289 PASS tagPrototypeClassString('dt') is "HTMLElement"
290 PASS tagConstructorClassString('dt') is "Function" 290 PASS tagConstructorClassString('dt') is "Function"
291 PASS tagConstructorName('dt') is "HTMLElement" 291 PASS tagConstructorName('dt') is "HTMLElement"
292 PASS tagClassString('em') is "HTMLElement" 292 PASS tagClassString('em') is "HTMLElement"
293 FAIL tagPrototypeClassString('em') should be HTMLElementPrototype. Was Object. 293 PASS tagPrototypeClassString('em') is "HTMLElement"
294 PASS tagConstructorClassString('em') is "Function" 294 PASS tagConstructorClassString('em') is "Function"
295 PASS tagConstructorName('em') is "HTMLElement" 295 PASS tagConstructorName('em') is "HTMLElement"
296 PASS tagClassString('embed') is "HTMLEmbedElement" 296 PASS tagClassString('embed') is "HTMLEmbedElement"
297 FAIL tagPrototypeClassString('embed') should be HTMLEmbedElementPrototype. Was O bject. 297 PASS tagPrototypeClassString('embed') is "HTMLEmbedElement"
298 PASS tagConstructorClassString('embed') is "Function" 298 PASS tagConstructorClassString('embed') is "Function"
299 PASS tagConstructorName('embed') is "HTMLEmbedElement" 299 PASS tagConstructorName('embed') is "HTMLEmbedElement"
300 PASS tagClassString('fieldset') is "HTMLFieldSetElement" 300 PASS tagClassString('fieldset') is "HTMLFieldSetElement"
301 FAIL tagPrototypeClassString('fieldset') should be HTMLFieldSetElementPrototype. Was Object. 301 PASS tagPrototypeClassString('fieldset') is "HTMLFieldSetElement"
302 PASS tagConstructorClassString('fieldset') is "Function" 302 PASS tagConstructorClassString('fieldset') is "Function"
303 PASS tagConstructorName('fieldset') is "HTMLFieldSetElement" 303 PASS tagConstructorName('fieldset') is "HTMLFieldSetElement"
304 PASS tagClassString('font') is "HTMLFontElement" 304 PASS tagClassString('font') is "HTMLFontElement"
305 FAIL tagPrototypeClassString('font') should be HTMLFontElementPrototype. Was Obj ect. 305 PASS tagPrototypeClassString('font') is "HTMLFontElement"
306 PASS tagConstructorClassString('font') is "Function" 306 PASS tagConstructorClassString('font') is "Function"
307 PASS tagConstructorName('font') is "HTMLFontElement" 307 PASS tagConstructorName('font') is "HTMLFontElement"
308 PASS tagClassString('footer') is "HTMLElement" 308 PASS tagClassString('footer') is "HTMLElement"
309 FAIL tagPrototypeClassString('footer') should be HTMLElementPrototype. Was Objec t. 309 PASS tagPrototypeClassString('footer') is "HTMLElement"
310 PASS tagConstructorClassString('footer') is "Function" 310 PASS tagConstructorClassString('footer') is "Function"
311 PASS tagConstructorName('footer') is "HTMLElement" 311 PASS tagConstructorName('footer') is "HTMLElement"
312 PASS tagClassString('form') is "HTMLFormElement" 312 PASS tagClassString('form') is "HTMLFormElement"
313 FAIL tagPrototypeClassString('form') should be HTMLFormElementPrototype. Was Obj ect. 313 PASS tagPrototypeClassString('form') is "HTMLFormElement"
314 PASS tagConstructorClassString('form') is "Function" 314 PASS tagConstructorClassString('form') is "Function"
315 PASS tagConstructorName('form') is "HTMLFormElement" 315 PASS tagConstructorName('form') is "HTMLFormElement"
316 PASS tagClassString('frame') is "HTMLFrameElement" 316 PASS tagClassString('frame') is "HTMLFrameElement"
317 FAIL tagPrototypeClassString('frame') should be HTMLFrameElementPrototype. Was O bject. 317 PASS tagPrototypeClassString('frame') is "HTMLFrameElement"
318 PASS tagConstructorClassString('frame') is "Function" 318 PASS tagConstructorClassString('frame') is "Function"
319 PASS tagConstructorName('frame') is "HTMLFrameElement" 319 PASS tagConstructorName('frame') is "HTMLFrameElement"
320 PASS tagClassString('frameset') is "HTMLFrameSetElement" 320 PASS tagClassString('frameset') is "HTMLFrameSetElement"
321 FAIL tagPrototypeClassString('frameset') should be HTMLFrameSetElementPrototype. Was Object. 321 PASS tagPrototypeClassString('frameset') is "HTMLFrameSetElement"
322 PASS tagConstructorClassString('frameset') is "Function" 322 PASS tagConstructorClassString('frameset') is "Function"
323 PASS tagConstructorName('frameset') is "HTMLFrameSetElement" 323 PASS tagConstructorName('frameset') is "HTMLFrameSetElement"
324 PASS tagClassString('head') is "HTMLHeadElement" 324 PASS tagClassString('head') is "HTMLHeadElement"
325 FAIL tagPrototypeClassString('head') should be HTMLHeadElementPrototype. Was Obj ect. 325 PASS tagPrototypeClassString('head') is "HTMLHeadElement"
326 PASS tagConstructorClassString('head') is "Function" 326 PASS tagConstructorClassString('head') is "Function"
327 PASS tagConstructorName('head') is "HTMLHeadElement" 327 PASS tagConstructorName('head') is "HTMLHeadElement"
328 PASS tagClassString('h1') is "HTMLHeadingElement" 328 PASS tagClassString('h1') is "HTMLHeadingElement"
329 FAIL tagPrototypeClassString('h1') should be HTMLHeadingElementPrototype. Was Ob ject. 329 PASS tagPrototypeClassString('h1') is "HTMLHeadingElement"
330 PASS tagConstructorClassString('h1') is "Function" 330 PASS tagConstructorClassString('h1') is "Function"
331 PASS tagConstructorName('h1') is "HTMLHeadingElement" 331 PASS tagConstructorName('h1') is "HTMLHeadingElement"
332 PASS tagClassString('h2') is "HTMLHeadingElement" 332 PASS tagClassString('h2') is "HTMLHeadingElement"
333 FAIL tagPrototypeClassString('h2') should be HTMLHeadingElementPrototype. Was Ob ject. 333 PASS tagPrototypeClassString('h2') is "HTMLHeadingElement"
334 PASS tagConstructorClassString('h2') is "Function" 334 PASS tagConstructorClassString('h2') is "Function"
335 PASS tagConstructorName('h2') is "HTMLHeadingElement" 335 PASS tagConstructorName('h2') is "HTMLHeadingElement"
336 PASS tagClassString('h3') is "HTMLHeadingElement" 336 PASS tagClassString('h3') is "HTMLHeadingElement"
337 FAIL tagPrototypeClassString('h3') should be HTMLHeadingElementPrototype. Was Ob ject. 337 PASS tagPrototypeClassString('h3') is "HTMLHeadingElement"
338 PASS tagConstructorClassString('h3') is "Function" 338 PASS tagConstructorClassString('h3') is "Function"
339 PASS tagConstructorName('h3') is "HTMLHeadingElement" 339 PASS tagConstructorName('h3') is "HTMLHeadingElement"
340 PASS tagClassString('h4') is "HTMLHeadingElement" 340 PASS tagClassString('h4') is "HTMLHeadingElement"
341 FAIL tagPrototypeClassString('h4') should be HTMLHeadingElementPrototype. Was Ob ject. 341 PASS tagPrototypeClassString('h4') is "HTMLHeadingElement"
342 PASS tagConstructorClassString('h4') is "Function" 342 PASS tagConstructorClassString('h4') is "Function"
343 PASS tagConstructorName('h4') is "HTMLHeadingElement" 343 PASS tagConstructorName('h4') is "HTMLHeadingElement"
344 PASS tagClassString('h5') is "HTMLHeadingElement" 344 PASS tagClassString('h5') is "HTMLHeadingElement"
345 FAIL tagPrototypeClassString('h5') should be HTMLHeadingElementPrototype. Was Ob ject. 345 PASS tagPrototypeClassString('h5') is "HTMLHeadingElement"
346 PASS tagConstructorClassString('h5') is "Function" 346 PASS tagConstructorClassString('h5') is "Function"
347 PASS tagConstructorName('h5') is "HTMLHeadingElement" 347 PASS tagConstructorName('h5') is "HTMLHeadingElement"
348 PASS tagClassString('h6') is "HTMLHeadingElement" 348 PASS tagClassString('h6') is "HTMLHeadingElement"
349 FAIL tagPrototypeClassString('h6') should be HTMLHeadingElementPrototype. Was Ob ject. 349 PASS tagPrototypeClassString('h6') is "HTMLHeadingElement"
350 PASS tagConstructorClassString('h6') is "Function" 350 PASS tagConstructorClassString('h6') is "Function"
351 PASS tagConstructorName('h6') is "HTMLHeadingElement" 351 PASS tagConstructorName('h6') is "HTMLHeadingElement"
352 PASS tagClassString('head') is "HTMLHeadElement" 352 PASS tagClassString('head') is "HTMLHeadElement"
353 FAIL tagPrototypeClassString('head') should be HTMLHeadElementPrototype. Was Obj ect. 353 PASS tagPrototypeClassString('head') is "HTMLHeadElement"
354 PASS tagConstructorClassString('head') is "Function" 354 PASS tagConstructorClassString('head') is "Function"
355 PASS tagConstructorName('head') is "HTMLHeadElement" 355 PASS tagConstructorName('head') is "HTMLHeadElement"
356 PASS tagClassString('header') is "HTMLElement" 356 PASS tagClassString('header') is "HTMLElement"
357 FAIL tagPrototypeClassString('header') should be HTMLElementPrototype. Was Objec t. 357 PASS tagPrototypeClassString('header') is "HTMLElement"
358 PASS tagConstructorClassString('header') is "Function" 358 PASS tagConstructorClassString('header') is "Function"
359 PASS tagConstructorName('header') is "HTMLElement" 359 PASS tagConstructorName('header') is "HTMLElement"
360 PASS tagClassString('hgroup') is "HTMLElement" 360 PASS tagClassString('hgroup') is "HTMLElement"
361 FAIL tagPrototypeClassString('hgroup') should be HTMLElementPrototype. Was Objec t. 361 PASS tagPrototypeClassString('hgroup') is "HTMLElement"
362 PASS tagConstructorClassString('hgroup') is "Function" 362 PASS tagConstructorClassString('hgroup') is "Function"
363 PASS tagConstructorName('hgroup') is "HTMLElement" 363 PASS tagConstructorName('hgroup') is "HTMLElement"
364 PASS tagClassString('hr') is "HTMLHRElement" 364 PASS tagClassString('hr') is "HTMLHRElement"
365 FAIL tagPrototypeClassString('hr') should be HTMLHRElementPrototype. Was Object. 365 PASS tagPrototypeClassString('hr') is "HTMLHRElement"
366 PASS tagConstructorClassString('hr') is "Function" 366 PASS tagConstructorClassString('hr') is "Function"
367 PASS tagConstructorName('hr') is "HTMLHRElement" 367 PASS tagConstructorName('hr') is "HTMLHRElement"
368 PASS tagClassString('html') is "HTMLHtmlElement" 368 PASS tagClassString('html') is "HTMLHtmlElement"
369 FAIL tagPrototypeClassString('html') should be HTMLHtmlElementPrototype. Was Obj ect. 369 PASS tagPrototypeClassString('html') is "HTMLHtmlElement"
370 PASS tagConstructorClassString('html') is "Function" 370 PASS tagConstructorClassString('html') is "Function"
371 PASS tagConstructorName('html') is "HTMLHtmlElement" 371 PASS tagConstructorName('html') is "HTMLHtmlElement"
372 PASS tagClassString('i') is "HTMLElement" 372 PASS tagClassString('i') is "HTMLElement"
373 FAIL tagPrototypeClassString('i') should be HTMLElementPrototype. Was Object. 373 PASS tagPrototypeClassString('i') is "HTMLElement"
374 PASS tagConstructorClassString('i') is "Function" 374 PASS tagConstructorClassString('i') is "Function"
375 PASS tagConstructorName('i') is "HTMLElement" 375 PASS tagConstructorName('i') is "HTMLElement"
376 PASS tagClassString('iframe') is "HTMLIFrameElement" 376 PASS tagClassString('iframe') is "HTMLIFrameElement"
377 FAIL tagPrototypeClassString('iframe') should be HTMLIFrameElementPrototype. Was Object. 377 PASS tagPrototypeClassString('iframe') is "HTMLIFrameElement"
378 PASS tagConstructorClassString('iframe') is "Function" 378 PASS tagConstructorClassString('iframe') is "Function"
379 PASS tagConstructorName('iframe') is "HTMLIFrameElement" 379 PASS tagConstructorName('iframe') is "HTMLIFrameElement"
380 PASS tagClassString('image') is "HTMLUnknownElement" 380 PASS tagClassString('image') is "HTMLUnknownElement"
381 FAIL tagPrototypeClassString('image') should be HTMLUnknownElementPrototype. Was Object. 381 PASS tagPrototypeClassString('image') is "HTMLUnknownElement"
382 PASS tagConstructorClassString('image') is "Function" 382 PASS tagConstructorClassString('image') is "Function"
383 PASS tagConstructorName('image') is "HTMLUnknownElement" 383 PASS tagConstructorName('image') is "HTMLUnknownElement"
384 PASS tagClassString('img') is "HTMLImageElement" 384 PASS tagClassString('img') is "HTMLImageElement"
385 FAIL tagPrototypeClassString('img') should be HTMLImageElementPrototype. Was Obj ect. 385 PASS tagPrototypeClassString('img') is "HTMLImageElement"
386 PASS tagConstructorClassString('img') is "Function" 386 PASS tagConstructorClassString('img') is "Function"
387 PASS tagConstructorName('img') is "HTMLImageElement" 387 PASS tagConstructorName('img') is "HTMLImageElement"
388 PASS tagClassString('input') is "HTMLInputElement" 388 PASS tagClassString('input') is "HTMLInputElement"
389 FAIL tagPrototypeClassString('input') should be HTMLInputElementPrototype. Was O bject. 389 PASS tagPrototypeClassString('input') is "HTMLInputElement"
390 PASS tagConstructorClassString('input') is "Function" 390 PASS tagConstructorClassString('input') is "Function"
391 PASS tagConstructorName('input') is "HTMLInputElement" 391 PASS tagConstructorName('input') is "HTMLInputElement"
392 PASS tagClassString('ins') is "HTMLModElement" 392 PASS tagClassString('ins') is "HTMLModElement"
393 FAIL tagPrototypeClassString('ins') should be HTMLModElementPrototype. Was Objec t. 393 PASS tagPrototypeClassString('ins') is "HTMLModElement"
394 PASS tagConstructorClassString('ins') is "Function" 394 PASS tagConstructorClassString('ins') is "Function"
395 PASS tagConstructorName('ins') is "HTMLModElement" 395 PASS tagConstructorName('ins') is "HTMLModElement"
396 PASS tagClassString('kbd') is "HTMLElement" 396 PASS tagClassString('kbd') is "HTMLElement"
397 FAIL tagPrototypeClassString('kbd') should be HTMLElementPrototype. Was Object. 397 PASS tagPrototypeClassString('kbd') is "HTMLElement"
398 PASS tagConstructorClassString('kbd') is "Function" 398 PASS tagConstructorClassString('kbd') is "Function"
399 PASS tagConstructorName('kbd') is "HTMLElement" 399 PASS tagConstructorName('kbd') is "HTMLElement"
400 PASS tagClassString('keygen') is "HTMLKeygenElement" 400 PASS tagClassString('keygen') is "HTMLKeygenElement"
401 FAIL tagPrototypeClassString('keygen') should be HTMLKeygenElementPrototype. Was Object. 401 PASS tagPrototypeClassString('keygen') is "HTMLKeygenElement"
402 PASS tagConstructorClassString('keygen') is "Function" 402 PASS tagConstructorClassString('keygen') is "Function"
403 PASS tagConstructorName('keygen') is "HTMLKeygenElement" 403 PASS tagConstructorName('keygen') is "HTMLKeygenElement"
404 PASS tagClassString('label') is "HTMLLabelElement" 404 PASS tagClassString('label') is "HTMLLabelElement"
405 FAIL tagPrototypeClassString('label') should be HTMLLabelElementPrototype. Was O bject. 405 PASS tagPrototypeClassString('label') is "HTMLLabelElement"
406 PASS tagConstructorClassString('label') is "Function" 406 PASS tagConstructorClassString('label') is "Function"
407 PASS tagConstructorName('label') is "HTMLLabelElement" 407 PASS tagConstructorName('label') is "HTMLLabelElement"
408 PASS tagClassString('layer') is "HTMLElement" 408 PASS tagClassString('layer') is "HTMLElement"
409 FAIL tagPrototypeClassString('layer') should be HTMLElementPrototype. Was Object . 409 PASS tagPrototypeClassString('layer') is "HTMLElement"
410 PASS tagConstructorClassString('layer') is "Function" 410 PASS tagConstructorClassString('layer') is "Function"
411 PASS tagConstructorName('layer') is "HTMLElement" 411 PASS tagConstructorName('layer') is "HTMLElement"
412 PASS tagClassString('legend') is "HTMLLegendElement" 412 PASS tagClassString('legend') is "HTMLLegendElement"
413 FAIL tagPrototypeClassString('legend') should be HTMLLegendElementPrototype. Was Object. 413 PASS tagPrototypeClassString('legend') is "HTMLLegendElement"
414 PASS tagConstructorClassString('legend') is "Function" 414 PASS tagConstructorClassString('legend') is "Function"
415 PASS tagConstructorName('legend') is "HTMLLegendElement" 415 PASS tagConstructorName('legend') is "HTMLLegendElement"
416 PASS tagClassString('li') is "HTMLLIElement" 416 PASS tagClassString('li') is "HTMLLIElement"
417 FAIL tagPrototypeClassString('li') should be HTMLLIElementPrototype. Was Object. 417 PASS tagPrototypeClassString('li') is "HTMLLIElement"
418 PASS tagConstructorClassString('li') is "Function" 418 PASS tagConstructorClassString('li') is "Function"
419 PASS tagConstructorName('li') is "HTMLLIElement" 419 PASS tagConstructorName('li') is "HTMLLIElement"
420 PASS tagClassString('link') is "HTMLLinkElement" 420 PASS tagClassString('link') is "HTMLLinkElement"
421 FAIL tagPrototypeClassString('link') should be HTMLLinkElementPrototype. Was Obj ect. 421 PASS tagPrototypeClassString('link') is "HTMLLinkElement"
422 PASS tagConstructorClassString('link') is "Function" 422 PASS tagConstructorClassString('link') is "Function"
423 PASS tagConstructorName('link') is "HTMLLinkElement" 423 PASS tagConstructorName('link') is "HTMLLinkElement"
424 PASS tagClassString('listing') is "HTMLPreElement" 424 PASS tagClassString('listing') is "HTMLPreElement"
425 FAIL tagPrototypeClassString('listing') should be HTMLPreElementPrototype. Was O bject. 425 PASS tagPrototypeClassString('listing') is "HTMLPreElement"
426 PASS tagConstructorClassString('listing') is "Function" 426 PASS tagConstructorClassString('listing') is "Function"
427 PASS tagConstructorName('listing') is "HTMLPreElement" 427 PASS tagConstructorName('listing') is "HTMLPreElement"
428 PASS tagClassString('main') is "HTMLElement" 428 PASS tagClassString('main') is "HTMLElement"
429 FAIL tagPrototypeClassString('main') should be HTMLElementPrototype. Was Object. 429 PASS tagPrototypeClassString('main') is "HTMLElement"
430 PASS tagConstructorClassString('main') is "Function" 430 PASS tagConstructorClassString('main') is "Function"
431 PASS tagConstructorName('main') is "HTMLElement" 431 PASS tagConstructorName('main') is "HTMLElement"
432 PASS tagClassString('map') is "HTMLMapElement" 432 PASS tagClassString('map') is "HTMLMapElement"
433 FAIL tagPrototypeClassString('map') should be HTMLMapElementPrototype. Was Objec t. 433 PASS tagPrototypeClassString('map') is "HTMLMapElement"
434 PASS tagConstructorClassString('map') is "Function" 434 PASS tagConstructorClassString('map') is "Function"
435 PASS tagConstructorName('map') is "HTMLMapElement" 435 PASS tagConstructorName('map') is "HTMLMapElement"
436 PASS tagClassString('marquee') is "HTMLMarqueeElement" 436 PASS tagClassString('marquee') is "HTMLMarqueeElement"
437 FAIL tagPrototypeClassString('marquee') should be HTMLMarqueeElementPrototype. W as Object. 437 PASS tagPrototypeClassString('marquee') is "HTMLMarqueeElement"
438 PASS tagConstructorClassString('marquee') is "Function" 438 PASS tagConstructorClassString('marquee') is "Function"
439 PASS tagConstructorName('marquee') is "HTMLMarqueeElement" 439 PASS tagConstructorName('marquee') is "HTMLMarqueeElement"
440 PASS tagClassString('menu') is "HTMLMenuElement" 440 PASS tagClassString('menu') is "HTMLMenuElement"
441 FAIL tagPrototypeClassString('menu') should be HTMLMenuElementPrototype. Was Obj ect. 441 PASS tagPrototypeClassString('menu') is "HTMLMenuElement"
442 PASS tagConstructorClassString('menu') is "Function" 442 PASS tagConstructorClassString('menu') is "Function"
443 PASS tagConstructorName('menu') is "HTMLMenuElement" 443 PASS tagConstructorName('menu') is "HTMLMenuElement"
444 PASS tagClassString('meta') is "HTMLMetaElement" 444 PASS tagClassString('meta') is "HTMLMetaElement"
445 FAIL tagPrototypeClassString('meta') should be HTMLMetaElementPrototype. Was Obj ect. 445 PASS tagPrototypeClassString('meta') is "HTMLMetaElement"
446 PASS tagConstructorClassString('meta') is "Function" 446 PASS tagConstructorClassString('meta') is "Function"
447 PASS tagConstructorName('meta') is "HTMLMetaElement" 447 PASS tagConstructorName('meta') is "HTMLMetaElement"
448 PASS tagClassString('nav') is "HTMLElement" 448 PASS tagClassString('nav') is "HTMLElement"
449 FAIL tagPrototypeClassString('nav') should be HTMLElementPrototype. Was Object. 449 PASS tagPrototypeClassString('nav') is "HTMLElement"
450 PASS tagConstructorClassString('nav') is "Function" 450 PASS tagConstructorClassString('nav') is "Function"
451 PASS tagConstructorName('nav') is "HTMLElement" 451 PASS tagConstructorName('nav') is "HTMLElement"
452 PASS tagClassString('nobr') is "HTMLElement" 452 PASS tagClassString('nobr') is "HTMLElement"
453 FAIL tagPrototypeClassString('nobr') should be HTMLElementPrototype. Was Object. 453 PASS tagPrototypeClassString('nobr') is "HTMLElement"
454 PASS tagConstructorClassString('nobr') is "Function" 454 PASS tagConstructorClassString('nobr') is "Function"
455 PASS tagConstructorName('nobr') is "HTMLElement" 455 PASS tagConstructorName('nobr') is "HTMLElement"
456 PASS tagClassString('noembed') is "HTMLElement" 456 PASS tagClassString('noembed') is "HTMLElement"
457 FAIL tagPrototypeClassString('noembed') should be HTMLElementPrototype. Was Obje ct. 457 PASS tagPrototypeClassString('noembed') is "HTMLElement"
458 PASS tagConstructorClassString('noembed') is "Function" 458 PASS tagConstructorClassString('noembed') is "Function"
459 PASS tagConstructorName('noembed') is "HTMLElement" 459 PASS tagConstructorName('noembed') is "HTMLElement"
460 PASS tagClassString('noframes') is "HTMLElement" 460 PASS tagClassString('noframes') is "HTMLElement"
461 FAIL tagPrototypeClassString('noframes') should be HTMLElementPrototype. Was Obj ect. 461 PASS tagPrototypeClassString('noframes') is "HTMLElement"
462 PASS tagConstructorClassString('noframes') is "Function" 462 PASS tagConstructorClassString('noframes') is "Function"
463 PASS tagConstructorName('noframes') is "HTMLElement" 463 PASS tagConstructorName('noframes') is "HTMLElement"
464 PASS tagClassString('nolayer') is "HTMLElement" 464 PASS tagClassString('nolayer') is "HTMLElement"
465 FAIL tagPrototypeClassString('nolayer') should be HTMLElementPrototype. Was Obje ct. 465 PASS tagPrototypeClassString('nolayer') is "HTMLElement"
466 PASS tagConstructorClassString('nolayer') is "Function" 466 PASS tagConstructorClassString('nolayer') is "Function"
467 PASS tagConstructorName('nolayer') is "HTMLElement" 467 PASS tagConstructorName('nolayer') is "HTMLElement"
468 PASS tagClassString('noscript') is "HTMLElement" 468 PASS tagClassString('noscript') is "HTMLElement"
469 FAIL tagPrototypeClassString('noscript') should be HTMLElementPrototype. Was Obj ect. 469 PASS tagPrototypeClassString('noscript') is "HTMLElement"
470 PASS tagConstructorClassString('noscript') is "Function" 470 PASS tagConstructorClassString('noscript') is "Function"
471 PASS tagConstructorName('noscript') is "HTMLElement" 471 PASS tagConstructorName('noscript') is "HTMLElement"
472 PASS tagClassString('object') is "HTMLObjectElement" 472 PASS tagClassString('object') is "HTMLObjectElement"
473 FAIL tagPrototypeClassString('object') should be HTMLObjectElementPrototype. Was Object. 473 PASS tagPrototypeClassString('object') is "HTMLObjectElement"
474 PASS tagConstructorClassString('object') is "Function" 474 PASS tagConstructorClassString('object') is "Function"
475 PASS tagConstructorName('object') is "HTMLObjectElement" 475 PASS tagConstructorName('object') is "HTMLObjectElement"
476 PASS tagClassString('ol') is "HTMLOListElement" 476 PASS tagClassString('ol') is "HTMLOListElement"
477 FAIL tagPrototypeClassString('ol') should be HTMLOListElementPrototype. Was Obje ct. 477 PASS tagPrototypeClassString('ol') is "HTMLOListElement"
478 PASS tagConstructorClassString('ol') is "Function" 478 PASS tagConstructorClassString('ol') is "Function"
479 PASS tagConstructorName('ol') is "HTMLOListElement" 479 PASS tagConstructorName('ol') is "HTMLOListElement"
480 PASS tagClassString('optgroup') is "HTMLOptGroupElement" 480 PASS tagClassString('optgroup') is "HTMLOptGroupElement"
481 FAIL tagPrototypeClassString('optgroup') should be HTMLOptGroupElementPrototype. Was Object. 481 PASS tagPrototypeClassString('optgroup') is "HTMLOptGroupElement"
482 PASS tagConstructorClassString('optgroup') is "Function" 482 PASS tagConstructorClassString('optgroup') is "Function"
483 PASS tagConstructorName('optgroup') is "HTMLOptGroupElement" 483 PASS tagConstructorName('optgroup') is "HTMLOptGroupElement"
484 PASS tagClassString('option') is "HTMLOptionElement" 484 PASS tagClassString('option') is "HTMLOptionElement"
485 FAIL tagPrototypeClassString('option') should be HTMLOptionElementPrototype. Was Object. 485 PASS tagPrototypeClassString('option') is "HTMLOptionElement"
486 PASS tagConstructorClassString('option') is "Function" 486 PASS tagConstructorClassString('option') is "Function"
487 PASS tagConstructorName('option') is "HTMLOptionElement" 487 PASS tagConstructorName('option') is "HTMLOptionElement"
488 PASS tagClassString('p') is "HTMLParagraphElement" 488 PASS tagClassString('p') is "HTMLParagraphElement"
489 FAIL tagPrototypeClassString('p') should be HTMLParagraphElementPrototype. Was O bject. 489 PASS tagPrototypeClassString('p') is "HTMLParagraphElement"
490 PASS tagConstructorClassString('p') is "Function" 490 PASS tagConstructorClassString('p') is "Function"
491 PASS tagConstructorName('p') is "HTMLParagraphElement" 491 PASS tagConstructorName('p') is "HTMLParagraphElement"
492 PASS tagClassString('param') is "HTMLParamElement" 492 PASS tagClassString('param') is "HTMLParamElement"
493 FAIL tagPrototypeClassString('param') should be HTMLParamElementPrototype. Was O bject. 493 PASS tagPrototypeClassString('param') is "HTMLParamElement"
494 PASS tagConstructorClassString('param') is "Function" 494 PASS tagConstructorClassString('param') is "Function"
495 PASS tagConstructorName('param') is "HTMLParamElement" 495 PASS tagConstructorName('param') is "HTMLParamElement"
496 PASS tagClassString('plaintext') is "HTMLElement" 496 PASS tagClassString('plaintext') is "HTMLElement"
497 FAIL tagPrototypeClassString('plaintext') should be HTMLElementPrototype. Was Ob ject. 497 PASS tagPrototypeClassString('plaintext') is "HTMLElement"
498 PASS tagConstructorClassString('plaintext') is "Function" 498 PASS tagConstructorClassString('plaintext') is "Function"
499 PASS tagConstructorName('plaintext') is "HTMLElement" 499 PASS tagConstructorName('plaintext') is "HTMLElement"
500 PASS tagClassString('pre') is "HTMLPreElement" 500 PASS tagClassString('pre') is "HTMLPreElement"
501 FAIL tagPrototypeClassString('pre') should be HTMLPreElementPrototype. Was Objec t. 501 PASS tagPrototypeClassString('pre') is "HTMLPreElement"
502 PASS tagConstructorClassString('pre') is "Function" 502 PASS tagConstructorClassString('pre') is "Function"
503 PASS tagConstructorName('pre') is "HTMLPreElement" 503 PASS tagConstructorName('pre') is "HTMLPreElement"
504 PASS tagClassString('q') is "HTMLQuoteElement" 504 PASS tagClassString('q') is "HTMLQuoteElement"
505 FAIL tagPrototypeClassString('q') should be HTMLQuoteElementPrototype. Was Objec t. 505 PASS tagPrototypeClassString('q') is "HTMLQuoteElement"
506 PASS tagConstructorClassString('q') is "Function" 506 PASS tagConstructorClassString('q') is "Function"
507 PASS tagConstructorName('q') is "HTMLQuoteElement" 507 PASS tagConstructorName('q') is "HTMLQuoteElement"
508 PASS tagClassString('rp') is "HTMLElement" 508 PASS tagClassString('rp') is "HTMLElement"
509 FAIL tagPrototypeClassString('rp') should be HTMLElementPrototype. Was Object. 509 PASS tagPrototypeClassString('rp') is "HTMLElement"
510 PASS tagConstructorClassString('rp') is "Function" 510 PASS tagConstructorClassString('rp') is "Function"
511 PASS tagConstructorName('rp') is "HTMLElement" 511 PASS tagConstructorName('rp') is "HTMLElement"
512 PASS tagClassString('rt') is "HTMLElement" 512 PASS tagClassString('rt') is "HTMLElement"
513 FAIL tagPrototypeClassString('rt') should be HTMLElementPrototype. Was Object. 513 PASS tagPrototypeClassString('rt') is "HTMLElement"
514 PASS tagConstructorClassString('rt') is "Function" 514 PASS tagConstructorClassString('rt') is "Function"
515 PASS tagConstructorName('rt') is "HTMLElement" 515 PASS tagConstructorName('rt') is "HTMLElement"
516 PASS tagClassString('ruby') is "HTMLElement" 516 PASS tagClassString('ruby') is "HTMLElement"
517 FAIL tagPrototypeClassString('ruby') should be HTMLElementPrototype. Was Object. 517 PASS tagPrototypeClassString('ruby') is "HTMLElement"
518 PASS tagConstructorClassString('ruby') is "Function" 518 PASS tagConstructorClassString('ruby') is "Function"
519 PASS tagConstructorName('ruby') is "HTMLElement" 519 PASS tagConstructorName('ruby') is "HTMLElement"
520 PASS tagClassString('s') is "HTMLElement" 520 PASS tagClassString('s') is "HTMLElement"
521 FAIL tagPrototypeClassString('s') should be HTMLElementPrototype. Was Object. 521 PASS tagPrototypeClassString('s') is "HTMLElement"
522 PASS tagConstructorClassString('s') is "Function" 522 PASS tagConstructorClassString('s') is "Function"
523 PASS tagConstructorName('s') is "HTMLElement" 523 PASS tagConstructorName('s') is "HTMLElement"
524 PASS tagClassString('samp') is "HTMLElement" 524 PASS tagClassString('samp') is "HTMLElement"
525 FAIL tagPrototypeClassString('samp') should be HTMLElementPrototype. Was Object. 525 PASS tagPrototypeClassString('samp') is "HTMLElement"
526 PASS tagConstructorClassString('samp') is "Function" 526 PASS tagConstructorClassString('samp') is "Function"
527 PASS tagConstructorName('samp') is "HTMLElement" 527 PASS tagConstructorName('samp') is "HTMLElement"
528 PASS tagClassString('script') is "HTMLScriptElement" 528 PASS tagClassString('script') is "HTMLScriptElement"
529 FAIL tagPrototypeClassString('script') should be HTMLScriptElementPrototype. Was Object. 529 PASS tagPrototypeClassString('script') is "HTMLScriptElement"
530 PASS tagConstructorClassString('script') is "Function" 530 PASS tagConstructorClassString('script') is "Function"
531 PASS tagConstructorName('script') is "HTMLScriptElement" 531 PASS tagConstructorName('script') is "HTMLScriptElement"
532 PASS tagClassString('section') is "HTMLElement" 532 PASS tagClassString('section') is "HTMLElement"
533 FAIL tagPrototypeClassString('section') should be HTMLElementPrototype. Was Obje ct. 533 PASS tagPrototypeClassString('section') is "HTMLElement"
534 PASS tagConstructorClassString('section') is "Function" 534 PASS tagConstructorClassString('section') is "Function"
535 PASS tagConstructorName('section') is "HTMLElement" 535 PASS tagConstructorName('section') is "HTMLElement"
536 PASS tagClassString('select') is "HTMLSelectElement" 536 PASS tagClassString('select') is "HTMLSelectElement"
537 FAIL tagPrototypeClassString('select') should be HTMLSelectElementPrototype. Was Object. 537 PASS tagPrototypeClassString('select') is "HTMLSelectElement"
538 PASS tagConstructorClassString('select') is "Function" 538 PASS tagConstructorClassString('select') is "Function"
539 PASS tagConstructorName('select') is "HTMLSelectElement" 539 PASS tagConstructorName('select') is "HTMLSelectElement"
540 PASS tagClassString('small') is "HTMLElement" 540 PASS tagClassString('small') is "HTMLElement"
541 FAIL tagPrototypeClassString('small') should be HTMLElementPrototype. Was Object . 541 PASS tagPrototypeClassString('small') is "HTMLElement"
542 PASS tagConstructorClassString('small') is "Function" 542 PASS tagConstructorClassString('small') is "Function"
543 PASS tagConstructorName('small') is "HTMLElement" 543 PASS tagConstructorName('small') is "HTMLElement"
544 PASS tagClassString('span') is "HTMLSpanElement" 544 PASS tagClassString('span') is "HTMLSpanElement"
545 FAIL tagPrototypeClassString('span') should be HTMLSpanElementPrototype. Was Obj ect. 545 PASS tagPrototypeClassString('span') is "HTMLSpanElement"
546 PASS tagConstructorClassString('span') is "Function" 546 PASS tagConstructorClassString('span') is "Function"
547 PASS tagConstructorName('span') is "HTMLSpanElement" 547 PASS tagConstructorName('span') is "HTMLSpanElement"
548 PASS tagClassString('strike') is "HTMLElement" 548 PASS tagClassString('strike') is "HTMLElement"
549 FAIL tagPrototypeClassString('strike') should be HTMLElementPrototype. Was Objec t. 549 PASS tagPrototypeClassString('strike') is "HTMLElement"
550 PASS tagConstructorClassString('strike') is "Function" 550 PASS tagConstructorClassString('strike') is "Function"
551 PASS tagConstructorName('strike') is "HTMLElement" 551 PASS tagConstructorName('strike') is "HTMLElement"
552 PASS tagClassString('strong') is "HTMLElement" 552 PASS tagClassString('strong') is "HTMLElement"
553 FAIL tagPrototypeClassString('strong') should be HTMLElementPrototype. Was Objec t. 553 PASS tagPrototypeClassString('strong') is "HTMLElement"
554 PASS tagConstructorClassString('strong') is "Function" 554 PASS tagConstructorClassString('strong') is "Function"
555 PASS tagConstructorName('strong') is "HTMLElement" 555 PASS tagConstructorName('strong') is "HTMLElement"
556 PASS tagClassString('style') is "HTMLStyleElement" 556 PASS tagClassString('style') is "HTMLStyleElement"
557 FAIL tagPrototypeClassString('style') should be HTMLStyleElementPrototype. Was O bject. 557 PASS tagPrototypeClassString('style') is "HTMLStyleElement"
558 PASS tagConstructorClassString('style') is "Function" 558 PASS tagConstructorClassString('style') is "Function"
559 PASS tagConstructorName('style') is "HTMLStyleElement" 559 PASS tagConstructorName('style') is "HTMLStyleElement"
560 PASS tagClassString('sub') is "HTMLElement" 560 PASS tagClassString('sub') is "HTMLElement"
561 FAIL tagPrototypeClassString('sub') should be HTMLElementPrototype. Was Object. 561 PASS tagPrototypeClassString('sub') is "HTMLElement"
562 PASS tagConstructorClassString('sub') is "Function" 562 PASS tagConstructorClassString('sub') is "Function"
563 PASS tagConstructorName('sub') is "HTMLElement" 563 PASS tagConstructorName('sub') is "HTMLElement"
564 PASS tagClassString('sup') is "HTMLElement" 564 PASS tagClassString('sup') is "HTMLElement"
565 FAIL tagPrototypeClassString('sup') should be HTMLElementPrototype. Was Object. 565 PASS tagPrototypeClassString('sup') is "HTMLElement"
566 PASS tagConstructorClassString('sup') is "Function" 566 PASS tagConstructorClassString('sup') is "Function"
567 PASS tagConstructorName('sup') is "HTMLElement" 567 PASS tagConstructorName('sup') is "HTMLElement"
568 PASS tagClassString('table') is "HTMLTableElement" 568 PASS tagClassString('table') is "HTMLTableElement"
569 FAIL tagPrototypeClassString('table') should be HTMLTableElementPrototype. Was O bject. 569 PASS tagPrototypeClassString('table') is "HTMLTableElement"
570 PASS tagConstructorClassString('table') is "Function" 570 PASS tagConstructorClassString('table') is "Function"
571 PASS tagConstructorName('table') is "HTMLTableElement" 571 PASS tagConstructorName('table') is "HTMLTableElement"
572 PASS tagClassString('tbody') is "HTMLTableSectionElement" 572 PASS tagClassString('tbody') is "HTMLTableSectionElement"
573 FAIL tagPrototypeClassString('tbody') should be HTMLTableSectionElementPrototype . Was Object. 573 PASS tagPrototypeClassString('tbody') is "HTMLTableSectionElement"
574 PASS tagConstructorClassString('tbody') is "Function" 574 PASS tagConstructorClassString('tbody') is "Function"
575 PASS tagConstructorName('tbody') is "HTMLTableSectionElement" 575 PASS tagConstructorName('tbody') is "HTMLTableSectionElement"
576 PASS tagClassString('td') is "HTMLTableCellElement" 576 PASS tagClassString('td') is "HTMLTableCellElement"
577 FAIL tagPrototypeClassString('td') should be HTMLTableCellElementPrototype. Was Object. 577 PASS tagPrototypeClassString('td') is "HTMLTableCellElement"
578 PASS tagConstructorClassString('td') is "Function" 578 PASS tagConstructorClassString('td') is "Function"
579 PASS tagConstructorName('td') is "HTMLTableCellElement" 579 PASS tagConstructorName('td') is "HTMLTableCellElement"
580 PASS tagClassString('textarea') is "HTMLTextAreaElement" 580 PASS tagClassString('textarea') is "HTMLTextAreaElement"
581 FAIL tagPrototypeClassString('textarea') should be HTMLTextAreaElementPrototype. Was Object. 581 PASS tagPrototypeClassString('textarea') is "HTMLTextAreaElement"
582 PASS tagConstructorClassString('textarea') is "Function" 582 PASS tagConstructorClassString('textarea') is "Function"
583 PASS tagConstructorName('textarea') is "HTMLTextAreaElement" 583 PASS tagConstructorName('textarea') is "HTMLTextAreaElement"
584 PASS tagClassString('tfoot') is "HTMLTableSectionElement" 584 PASS tagClassString('tfoot') is "HTMLTableSectionElement"
585 FAIL tagPrototypeClassString('tfoot') should be HTMLTableSectionElementPrototype . Was Object. 585 PASS tagPrototypeClassString('tfoot') is "HTMLTableSectionElement"
586 PASS tagConstructorClassString('tfoot') is "Function" 586 PASS tagConstructorClassString('tfoot') is "Function"
587 PASS tagConstructorName('tfoot') is "HTMLTableSectionElement" 587 PASS tagConstructorName('tfoot') is "HTMLTableSectionElement"
588 PASS tagClassString('th') is "HTMLTableCellElement" 588 PASS tagClassString('th') is "HTMLTableCellElement"
589 FAIL tagPrototypeClassString('th') should be HTMLTableCellElementPrototype. Was Object. 589 PASS tagPrototypeClassString('th') is "HTMLTableCellElement"
590 PASS tagConstructorClassString('th') is "Function" 590 PASS tagConstructorClassString('th') is "Function"
591 PASS tagConstructorName('th') is "HTMLTableCellElement" 591 PASS tagConstructorName('th') is "HTMLTableCellElement"
592 PASS tagClassString('thead') is "HTMLTableSectionElement" 592 PASS tagClassString('thead') is "HTMLTableSectionElement"
593 FAIL tagPrototypeClassString('thead') should be HTMLTableSectionElementPrototype . Was Object. 593 PASS tagPrototypeClassString('thead') is "HTMLTableSectionElement"
594 PASS tagConstructorClassString('thead') is "Function" 594 PASS tagConstructorClassString('thead') is "Function"
595 PASS tagConstructorName('thead') is "HTMLTableSectionElement" 595 PASS tagConstructorName('thead') is "HTMLTableSectionElement"
596 PASS tagClassString('title') is "HTMLTitleElement" 596 PASS tagClassString('title') is "HTMLTitleElement"
597 FAIL tagPrototypeClassString('title') should be HTMLTitleElementPrototype. Was O bject. 597 PASS tagPrototypeClassString('title') is "HTMLTitleElement"
598 PASS tagConstructorClassString('title') is "Function" 598 PASS tagConstructorClassString('title') is "Function"
599 PASS tagConstructorName('title') is "HTMLTitleElement" 599 PASS tagConstructorName('title') is "HTMLTitleElement"
600 PASS tagClassString('tr') is "HTMLTableRowElement" 600 PASS tagClassString('tr') is "HTMLTableRowElement"
601 FAIL tagPrototypeClassString('tr') should be HTMLTableRowElementPrototype. Was O bject. 601 PASS tagPrototypeClassString('tr') is "HTMLTableRowElement"
602 PASS tagConstructorClassString('tr') is "Function" 602 PASS tagConstructorClassString('tr') is "Function"
603 PASS tagConstructorName('tr') is "HTMLTableRowElement" 603 PASS tagConstructorName('tr') is "HTMLTableRowElement"
604 PASS tagClassString('tt') is "HTMLElement" 604 PASS tagClassString('tt') is "HTMLElement"
605 FAIL tagPrototypeClassString('tt') should be HTMLElementPrototype. Was Object. 605 PASS tagPrototypeClassString('tt') is "HTMLElement"
606 PASS tagConstructorClassString('tt') is "Function" 606 PASS tagConstructorClassString('tt') is "Function"
607 PASS tagConstructorName('tt') is "HTMLElement" 607 PASS tagConstructorName('tt') is "HTMLElement"
608 PASS tagClassString('u') is "HTMLElement" 608 PASS tagClassString('u') is "HTMLElement"
609 FAIL tagPrototypeClassString('u') should be HTMLElementPrototype. Was Object. 609 PASS tagPrototypeClassString('u') is "HTMLElement"
610 PASS tagConstructorClassString('u') is "Function" 610 PASS tagConstructorClassString('u') is "Function"
611 PASS tagConstructorName('u') is "HTMLElement" 611 PASS tagConstructorName('u') is "HTMLElement"
612 PASS tagClassString('ul') is "HTMLUListElement" 612 PASS tagClassString('ul') is "HTMLUListElement"
613 FAIL tagPrototypeClassString('ul') should be HTMLUListElementPrototype. Was Obje ct. 613 PASS tagPrototypeClassString('ul') is "HTMLUListElement"
614 PASS tagConstructorClassString('ul') is "Function" 614 PASS tagConstructorClassString('ul') is "Function"
615 PASS tagConstructorName('ul') is "HTMLUListElement" 615 PASS tagConstructorName('ul') is "HTMLUListElement"
616 PASS tagClassString('var') is "HTMLElement" 616 PASS tagClassString('var') is "HTMLElement"
617 FAIL tagPrototypeClassString('var') should be HTMLElementPrototype. Was Object. 617 PASS tagPrototypeClassString('var') is "HTMLElement"
618 PASS tagConstructorClassString('var') is "Function" 618 PASS tagConstructorClassString('var') is "Function"
619 PASS tagConstructorName('var') is "HTMLElement" 619 PASS tagConstructorName('var') is "HTMLElement"
620 PASS tagClassString('wbr') is "HTMLElement" 620 PASS tagClassString('wbr') is "HTMLElement"
621 FAIL tagPrototypeClassString('wbr') should be HTMLElementPrototype. Was Object. 621 PASS tagPrototypeClassString('wbr') is "HTMLElement"
622 PASS tagConstructorClassString('wbr') is "Function" 622 PASS tagConstructorClassString('wbr') is "Function"
623 PASS tagConstructorName('wbr') is "HTMLElement" 623 PASS tagConstructorName('wbr') is "HTMLElement"
624 PASS tagClassString('xmp') is "HTMLPreElement" 624 PASS tagClassString('xmp') is "HTMLPreElement"
625 FAIL tagPrototypeClassString('xmp') should be HTMLPreElementPrototype. Was Objec t. 625 PASS tagPrototypeClassString('xmp') is "HTMLPreElement"
626 PASS tagConstructorClassString('xmp') is "Function" 626 PASS tagConstructorClassString('xmp') is "Function"
627 PASS tagConstructorName('xmp') is "HTMLPreElement" 627 PASS tagConstructorName('xmp') is "HTMLPreElement"
628 628
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698