summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/beforeload/script-before-load.html
blob: e71200c8cc604cc800410783da32f3234f149c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<script src="resources/print.js"></script>
</head>

<body>
<p>This page tests the beforeload event on script elements.  You should see a PASS message below if everything
works.</p>
<hr>
<div id='console'></div>
<script>
if (window.layoutTestController)
    layoutTestController.dumpAsText();
</script>
<script onbeforeload="print('PASS', 'green'); return false" src="resources/fail.js"></script>
</body>
</html>