0
Files
src/third_party/blink/manual_tests/disable-javascript-reload.html
Kent Tamura dc3ed43a93 Move //third_party/WebKit/ManualTests to //third_party/blink/manual_tests
This CL has no behavior changes.

Bug: 829695
Change-Id: I65285444001e79f1905fcaa4ae11e064f73049a2
Reviewed-on: https://chromium-review.googlesource.com/1006567
Reviewed-by: Quinten Yearsley <qyearsley@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#549995}
2018-04-12 01:32:10 +00:00

22 lines
475 B
HTML

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