blob: c0fc424b9152a71babd7c4380a5015f953ff2909 [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.layoutTestController)
layoutTestController.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>