WebCore/manual-tests/disable-javascript-reload.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:32:07 +0300
changeset 2 303757a437d3
parent 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037 Kit: 201039

<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>