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="../../../resources/js-test.js"></script> |
5 | 5 |
6 <div id="container"></div> | 6 <div id="container"></div> |
7 <pre id="console"></div> | 7 <pre id="console"></div> |
8 | 8 |
9 <script> | 9 <script> |
10 description('Confirms shadow.olderShadowRoot returns correct ShadowRoot'); | 10 description('Confirms shadow.olderShadowRoot returns correct ShadowRoot'); |
11 | 11 |
12 function testCase(f) | 12 function testCase(f) |
13 { | 13 { |
14 host = document.createElement('div'); | 14 host = document.createElement('div'); |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 101 |
102 container.removeChild(host); | 102 container.removeChild(host); |
103 | 103 |
104 shouldBe('shadow.olderShadowRoot', 'oldestShadowRoot'); | 104 shouldBe('shadow.olderShadowRoot', 'oldestShadowRoot'); |
105 }); | 105 }); |
106 | 106 |
107 container.innerHTML = ''; | 107 container.innerHTML = ''; |
108 </script> | 108 </script> |
109 </body> | 109 </body> |
110 </html> | 110 </html> |
OLD | NEW |