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