WebCore/manual-tests/disable-javascript-reload.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <head>
       
     3 <script>
       
     4 function 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;">
       
    14 To run this test manually, disable javascript and reload the page.
       
    15 <br><br>
       
    16 </div>
       
    17 <div id="console">
       
    18 PASS
       
    19 </div>
       
    20 </body
       
    21 </html>