blob: ba7538c8f7e8aff33c3abd794ed15d4b4296e1ee [file] [log] [blame]
<!doctype HTML>
<style>
ul {
color: white;
background:gray;
}
</style>
The test succeeds if the bullet is black.
<ul id='target'>
<li>Test</li>
</ul>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
onload = function() {
requestAnimationFrame(function() {
target.style.color = 'black';
if (window.testRunner)
testRunner.notifyDone();
});
};
</script>