| <script src="../../resources/js-test-pre.js"></script> |
| window.testRunner.keepWebHistory(); |
| firstStyle = internals.computedStyleIncludingVisitedInfo(document.getElementById('one')); |
| secondStyle = internals.computedStyleIncludingVisitedInfo(document.getElementById('two')); |
| shouldBecomeDifferent('firstStyle.color', 'secondStyle.color', function() { |
| shouldBecomeDifferent('firstStyle.backgroundColor', 'secondStyle.backgroundColor', finishJSTest); |
| :link { color: green; background-color: white } |
| :visited { color: orange; background-color: black } |
| <body onload="compareStyles()"> |
| <iframe src="resources/dummy.html" style="display:none"></iframe> |
| <p>These two links should be different colors (green and orange):</p> |
| <a href="http://madeup.site.com" id="one">One</a> |
| <a href="resources/dummy.html" id="two">Two</a><br> |
| <script src="../../resources/js-test-post.js"></script> |