| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head id="head"> | 2 <head id="head"> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 description("This tests setting and re-serialization of some CSS selectors."); | 8 description("This tests setting and re-serialization of some CSS selectors."); |
| 9 | 9 |
| 10 var bogusSelector = "_foo"; | 10 var bogusSelector = "_foo"; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 shouldBe("setThenReadSelectorText(':after')", "'::after'"); | 171 shouldBe("setThenReadSelectorText(':after')", "'::after'"); |
| 172 shouldBe("setThenReadSelectorText(':before')", "'::before'"); | 172 shouldBe("setThenReadSelectorText(':before')", "'::before'"); |
| 173 shouldBe("setThenReadSelectorText(':first-letter')", "'::first-letter'"); | 173 shouldBe("setThenReadSelectorText(':first-letter')", "'::first-letter'"); |
| 174 shouldBe("setThenReadSelectorText(':first-line')", "'::first-line'"); | 174 shouldBe("setThenReadSelectorText(':first-line')", "'::first-line'"); |
| 175 shouldBe("setThenReadSelectorText(':-webkit-any( a.class1 , #id,[att
r] )')","':-webkit-any(a.class1,#id,[attr])'"); | 175 shouldBe("setThenReadSelectorText(':-webkit-any( a.class1 , #id,[att
r] )')","':-webkit-any(a.class1,#id,[attr])'"); |
| 176 | 176 |
| 177 debug(''); | 177 debug(''); |
| 178 | 178 |
| 179 </script> | 179 </script> |
| 180 <script src="../js/resources/js-test-post.js"></script> | |
| 181 </body> | 180 </body> |
| 182 </html> | 181 </html> |
| OLD | NEW |