OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 <script src="resources/polyfill.js"></script> | |
6 <script src="resources/shadow-dom.js"></script> | 5 <script src="resources/shadow-dom.js"></script> |
7 </head> | 6 </head> |
8 <body> | 7 <body> |
9 | 8 |
10 <div id="container"></div> | 9 <div id="container"></div> |
11 <pre id="console"></pre> | 10 <pre id="console"></pre> |
12 | 11 |
13 <script> | 12 <script> |
14 function testCase(f) | 13 function testCase(f) |
15 { | 14 { |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "link")', 'false
'); | 263 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "link")', 'false
'); |
265 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "target")', 'fal
se'); | 264 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "target")', 'fal
se'); |
266 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "visited")', 'tr
ue'); | 265 shouldBe('internals.hasSelectorForPseudoClassInShadow(host, "visited")', 'tr
ue'); |
267 }); | 266 }); |
268 | 267 |
269 finishJSTest(); | 268 finishJSTest(); |
270 </script> | 269 </script> |
271 <script src="../../js/resources/js-test-post.js"></script> | 270 <script src="../../js/resources/js-test-post.js"></script> |
272 </body> | 271 </body> |
273 </html> | 272 </html> |
OLD | NEW |