blob: 69b39927811f7a78dcab7722dc1780641c504306 [file] [log] [blame]
<script>
function test()
{
if (window.location.hash == "#FAILED")
document.getElementById("succeededDiv").setAttribute("style", "display:none;");
else
document.getElementById("failedDiv").setAttribute("style", "display:none;");
if (window.testRunner)
testRunner.notifyDone();
}
</script>
<body onload="test();">
<div id="succeededDiv">
<span style="color:green;">SUCCESS</span>
</div>
<div id="failedDiv">
<a name="FAILED"><span style="color:red;">FAILED</span></a>
</div>
</body>