blob: 889552bdf68202f44d927755a2032a796944c0f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function test() {
document.write("Should say SUCCESS:<p>SUCCESS");
setTimeout("testRunner.notifyDone()", 1);
}
</script>
</head>
<body onload="test()">
</body>
|