beidson@apple.com | 16ce164 | 2010-02-04 03:28:12 +0000 | [diff] [blame] | 1 | <script> |
| 2 | |
| 3 | if (!sessionStorage.in_document_with_fragment_url_4) |
| 4 | sessionStorage.in_document_with_fragment_url_4 = true; |
| 5 | else |
| 6 | delete sessionStorage.in_document_with_fragment_url_4; |
| 7 | |
rniwa@webkit.org | 03b9c6d | 2012-07-16 01:41:53 +0000 | [diff] [blame] | 8 | if (window.testRunner) { |
| 9 | testRunner.dumpAsText(); |
| 10 | testRunner.waitUntilDone(); |
beidson@apple.com | 16ce164 | 2010-02-04 03:28:12 +0000 | [diff] [blame] | 11 | } |
| 12 | |
| 13 | function documentURLHash() |
| 14 | { |
| 15 | var index = document.URL.lastIndexOf("#"); |
| 16 | if (index == -1) |
| 17 | return ""; |
| 18 | return document.URL.substring(index); |
| 19 | } |
| 20 | |
| 21 | function hashChanged() |
| 22 | { |
| 23 | alert("Hash changed to " + documentURLHash() + " which is interesting because we shouldn't get a hashchange event in this test."); |
| 24 | } |
| 25 | |
| 26 | function 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.org | 03b9c6d | 2012-07-16 01:41:53 +0000 | [diff] [blame] | 38 | if (window.testRunner) |
| 39 | testRunner.notifyDone(); |
beidson@apple.com | 16ce164 | 2010-02-04 03:28:12 +0000 | [diff] [blame] | 40 | } |
| 41 | } |
| 42 | |
| 43 | </script> |
| 44 | <body onhashchange="hashChanged();" onload="loaded();"> |
| 45 | This 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> |