OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- this tests the spec as it hopefully will be once bug https://www.w3.org/Bu
gs/Public/show_bug.cgi?id=17155 is fixed --> | 2 <!-- this tests the spec as it hopefully will be once bug https://www.w3.org/Bug
s/Public/show_bug.cgi?id=17155 is fixed --> |
3 <title>Fragment Navigation: Updating document address</title> | 3 <title>Fragment Navigation: Updating document address</title> |
4 <script src="/resources/testharness.js"></script> | 4 <script src="/resources/testharness.js"></script> |
5 <script src="/resources/testharnessreport.js"></script> | 5 <script src="/resources/testharnessreport.js"></script> |
6 <div id="log"></div> | 6 <div id="log"></div> |
7 <script> | 7 <script> |
8 test(function() { | 8 test(function() { |
9 assert_equals(location.hash, "", "Page must be loaded with no hash") | 9 assert_equals(location.hash, "", "Page must be loaded with no hash") |
10 var original_location = location.href; | 10 var original_location = location.href; |
11 location.hash = "test"; | 11 location.hash = "test"; |
12 assert_equals(location.hash, "#test"); | 12 assert_equals(location.hash, "#test"); |
13 assert_equals(location.href, original_location + "#test"); | 13 assert_equals(location.href, original_location + "#test"); |
14 location.hash = "" | 14 location.hash = "" |
15 }); | 15 }); |
16 </script> | 16 </script> |
OLD | NEW |