Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / loading / location-hash-reload-cycle.html
blob7dc51bced67d8f59acfb3d3ce3e1228f58e92ac3
1 <html>
2 <head>
3 <script>
4 function runTests()
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 window.location.hash = "";
10 window.location.hash = "#";
12 </script>
13 </head>
14 <body onload="runTests();">
15 <p>This test checks that no loader actions occur when setting window.location.hash to the empty string or "#". If this test fails when run in a browser, it will reload continuously. If this test fails when run in DumpRenderTree, the FrameLoader callback output will contain willPerformClientRedirectToURL callbacks.</p>
16 </body>
17 </html>