haikuwebkit/LayoutTests/fast/loader/resources/subframe-notify-done.html

15 lines
232 B
HTML

<html>
<head>
<script>
function loaded() {
if (window.testRunner) {
testRunner.notifyDone();
}
}
</script>
</head>
<body onload="loaded();">
I am a simple document that calls notifyDone() when loaded
</body>
</html>