1<html>
2<head>
3<script>
4function test()
5{
6    document.getElementById("manualDirections").setAttribute("style","display:block;");
7    document.getElementById("console").innerHTML = "FAIL - disabled javascript hasn't been applied to refreshed webpage";
8}
9
10</script>
11</head>
12<body onload="test();">
13<div id="manualDirections" style="display:none;">
14To run this test manually, disable javascript and reload the page.
15<br><br>
16</div>
17<div id="console">
18PASS
19</div>
20</body
21</html>
22