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