blob: 503ecc5f9594c79ccd034fa7600cecee82be3ca0 [file] [log] [blame]
beidson@apple.com16ce1642010-02-04 03:28:12 +00001<script>
2
3if (!sessionStorage.in_document_with_fragment_url_4)
4 sessionStorage.in_document_with_fragment_url_4 = true;
5else
6 delete sessionStorage.in_document_with_fragment_url_4;
7
rniwa@webkit.org03b9c6d2012-07-16 01:41:53 +00008if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
beidson@apple.com16ce1642010-02-04 03:28:12 +000011}
12
13function documentURLHash()
14{
15 var index = document.URL.lastIndexOf("#");
16 if (index == -1)
17 return "";
18 return document.URL.substring(index);
19}
20
21function hashChanged()
22{
23 alert("Hash changed to " + documentURLHash() + " which is interesting because we shouldn't get a hashchange event in this test.");
24}
25
26function loaded()
27{
28 if (sessionStorage.in_document_with_fragment_url_4) {
29 alert("First load complete. URL's current hash is " + documentURLHash());
30 history.replaceState(null, null, "#foo");
31 alert("After replaceState, the URL's current hash is " + documentURLHash());
32 var rect = document.getElementById("clickanchor").getBoundingClientRect();
33 eventSender.mouseMoveTo(rect.left + rect.width / 2, rect.top + rect.height / 2);
34 eventSender.mouseDown();
35 eventSender.mouseUp();
36 } else {
37 alert("Second load complete. URL's current hash is " + documentURLHash());
rniwa@webkit.org03b9c6d2012-07-16 01:41:53 +000038 if (window.testRunner)
39 testRunner.notifyDone();
beidson@apple.com16ce1642010-02-04 03:28:12 +000040 }
41}
42
43</script>
44<body onhashchange="hashChanged();" onload="loaded();">
45This page uses history.replaceState() to add #foo to its URL. Then click the second link, which has an empty href and should take you back to the original URL without the #foo.<br>
46<a id="clickanchor" href="">Click here to return to the original page with the original url</a>
47</body>