summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/disable-javascript-reload.html
blob: c7e2a9140abe29f5396fdb28b14b4dbbc3f0bfc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>
function test()
{
    document.getElementById("manualDirections").setAttribute("style","display:block;");
    document.getElementById("console").innerHTML = "FAIL - disabled javascript hasn't been applied to refreshed webpage";
}

</script>
</head>
<body onload="test();">
<div id="manualDirections" style="display:none;">
To run this test manually, disable javascript and reload the page.
<br><br>
</div>
<div id="console">
PASS
</div>
</body
</html>