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> | 5 <script> |
6 description("Tests that <style scoped> is correctly applied as child of a Sh
adowRoot, and that it doesn't leak out. Can only run within DRT."); | 6 description("Tests that <style scoped> is correctly applied as child of a Sh
adowRoot, and that it doesn't leak out. Can only run within DRT."); |
7 | 7 |
8 function test() | 8 function test() |
9 { | 9 { |
10 if (window.testRunner) | 10 if (window.testRunner) |
(...skipping 19 matching lines...) Expand all Loading... |
30 <div id="A"> | 30 <div id="A"> |
31 AAA | 31 AAA |
32 </div> | 32 </div> |
33 <div id="B"> | 33 <div id="B"> |
34 BBB | 34 BBB |
35 </div> | 35 </div> |
36 <div id="D"> | 36 <div id="D"> |
37 DDD | 37 DDD |
38 </div> | 38 </div> |
39 <script>test();</script> | 39 <script>test();</script> |
40 <script src="../../js/resources/js-test-post.js"></script> | |
41 </body> | 40 </body> |
42 </html> | 41 </html> |
OLD | NEW |