OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <link rel="stylesheet" href="../../js/resources/js-test-style.css"> | 3 <link rel="stylesheet" href="../../js/resources/js-test-style.css"> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p>Basic test for the <style scoped> attribute.</p> | 7 <p>Basic test for the <style scoped> attribute.</p> |
8 <div id="scope"> | 8 <div id="scope"> |
9 <style id="global1"></style> | 9 <style id="global1"></style> |
10 <style scoped='scoped' id="scoped1"></style> | 10 <style scoped='scoped' id="scoped1"></style> |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 shouldBeTrue("testBooleanAttribute(scoped1, 'scoped')"); | 112 shouldBeTrue("testBooleanAttribute(scoped1, 'scoped')"); |
113 shouldBeTrue("scoped1.scoped"); | 113 shouldBeTrue("scoped1.scoped"); |
114 shouldBeTrue("testBooleanAttribute(scoped2, 'scoped')"); | 114 shouldBeTrue("testBooleanAttribute(scoped2, 'scoped')"); |
115 shouldBeTrue("scoped2.scoped"); | 115 shouldBeTrue("scoped2.scoped"); |
116 shouldBeTrue("testBooleanAttribute(scoped3, 'scoped')"); | 116 shouldBeTrue("testBooleanAttribute(scoped3, 'scoped')"); |
117 shouldBeTrue("scoped3.scoped"); | 117 shouldBeTrue("scoped3.scoped"); |
118 | 118 |
119 debug("--- DONE ---"); | 119 debug("--- DONE ---"); |
120 var successfullyParsed = true; | 120 var successfullyParsed = true; |
121 </script> | 121 </script> |
122 <script src="../../js/resources/js-test-post.js"></script> | |
123 </body> | 122 </body> |
124 </html> | 123 </html> |
OLD | NEW |