OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
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> | 5 <script src="resources/polyfill.js"></script> |
6 | 6 |
7 <div id="container"></div> | 7 <div id="container"></div> |
8 <pre id="console"></pre> | 8 <pre id="console"></pre> |
9 | 9 |
10 <script> | 10 <script> |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 shouldBe('document.getElementById("A")', 'null'); | 70 shouldBe('document.getElementById("A")', 'null'); |
71 shouldBe('shadowRootA.getElementById("B")', 'B'); | 71 shouldBe('shadowRootA.getElementById("B")', 'B'); |
72 shouldBe('shadowRootB.getElementById("C")', 'null'); | 72 shouldBe('shadowRootB.getElementById("C")', 'null'); |
73 shouldBe('shadowRootC.getElementById("D")', 'null'); | 73 shouldBe('shadowRootC.getElementById("D")', 'null'); |
74 | 74 |
75 </script> | 75 </script> |
76 <script src="../../js/resources/js-test-post.js"></script> | 76 <script src="../../js/resources/js-test-post.js"></script> |
77 </body> | 77 </body> |
78 </html> | 78 </html> |
OLD | NEW |