--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/disable-javascript-reload.html Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,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>