| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 <script> | 4 <script> |
| 5 jsTestIsAsync = true; | 5 jsTestIsAsync = true; |
| 6 | 6 |
| 7 if (window.testRunner) | 7 if (window.testRunner) |
| 8 window.testRunner.keepWebHistory(); | 8 window.testRunner.keepWebHistory(); |
| 9 | 9 |
| 10 function compareStyles() | 10 function compareStyles() |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 </head> | 25 </head> |
| 26 <body onload="compareStyles()"> | 26 <body onload="compareStyles()"> |
| 27 <iframe src="resources/dummy.html" style="display:none"></iframe> | 27 <iframe src="resources/dummy.html" style="display:none"></iframe> |
| 28 <p>These two links should be the same color (orange):</p> | 28 <p>These two links should be the same color (orange):</p> |
| 29 <p> | 29 <p> |
| 30 <a href="resources/dummy.html" id="one">One</a> | 30 <a href="resources/dummy.html" id="one">One</a> |
| 31 <a href="resources/dummy.html" id="two" class="test">Two</a><br> | 31 <a href="resources/dummy.html" id="two" class="test">Two</a><br> |
| 32 </p> | 32 </p> |
| 33 <div id=console></div> | 33 <div id=console></div> |
| 34 </body> | 34 </body> |
| 35 <script src="../js/resources/js-test-post.js"></script> | |
| 36 </html> | 35 </html> |
| OLD | NEW |