OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
4 <style id="style" media="screen"> | 4 <style id="style" media="screen"> |
5 .non-existent-class { | 5 .non-existent-class { |
6 color: rgb(0, 0, 0); | 6 color: rgb(0, 0, 0); |
7 clip: rect(0, 0, 1, 1); | 7 clip: rect(0, 0, 1, 1); |
8 content: counter(dummy, square); | 8 content: counter(dummy, square); |
9 } | 9 } |
10 </style> | 10 </style> |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 testTag("h4", "HTMLHeadingElement"); | 198 testTag("h4", "HTMLHeadingElement"); |
199 testTag("h5", "HTMLHeadingElement"); | 199 testTag("h5", "HTMLHeadingElement"); |
200 testTag("h6", "HTMLHeadingElement"); | 200 testTag("h6", "HTMLHeadingElement"); |
201 testTag("head", "HTMLHeadElement"); | 201 testTag("head", "HTMLHeadElement"); |
202 testTag("header", "HTMLElement"); | 202 testTag("header", "HTMLElement"); |
203 testTag("hgroup", "HTMLElement"); | 203 testTag("hgroup", "HTMLElement"); |
204 testTag("hr", "HTMLHRElement"); | 204 testTag("hr", "HTMLHRElement"); |
205 testTag("html", "HTMLHtmlElement"); | 205 testTag("html", "HTMLHtmlElement"); |
206 testTag("i", "HTMLElement"); | 206 testTag("i", "HTMLElement"); |
207 testTag("iframe", "HTMLIFrameElement"); | 207 testTag("iframe", "HTMLIFrameElement"); |
208 testTag("image", "HTMLElement"); | 208 testTag("image", "HTMLUnknownElement"); |
209 testTag("img", "HTMLImageElement"); | 209 testTag("img", "HTMLImageElement"); |
210 testTag("input", "HTMLInputElement"); | 210 testTag("input", "HTMLInputElement"); |
211 testTag("ins", "HTMLModElement"); | 211 testTag("ins", "HTMLModElement"); |
212 testTag("kbd", "HTMLElement"); | 212 testTag("kbd", "HTMLElement"); |
213 testTag("keygen", "HTMLKeygenElement"); | 213 testTag("keygen", "HTMLKeygenElement"); |
214 testTag("label", "HTMLLabelElement"); | 214 testTag("label", "HTMLLabelElement"); |
215 testTag("layer", "HTMLElement"); | 215 testTag("layer", "HTMLElement"); |
216 testTag("legend", "HTMLLegendElement"); | 216 testTag("legend", "HTMLLegendElement"); |
217 testTag("li", "HTMLLIElement"); | 217 testTag("li", "HTMLLIElement"); |
218 testTag("link", "HTMLLinkElement"); | 218 testTag("link", "HTMLLinkElement"); |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 | 296 |
297 function frameLoaded() | 297 function frameLoaded() |
298 { | 298 { |
299 runTest(); | 299 runTest(); |
300 } | 300 } |
301 | 301 |
302 </script> | 302 </script> |
303 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic
ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> | 303 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic
ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> |
304 </body> | 304 </body> |
305 </html> | 305 </html> |
OLD | NEW |