properties.html (463B)
1 <!doctype html> 2 <script src="/resources/testharness.js"></script> 3 <script src="/resources/testharnessreport.js"></script> 4 <script> 5 async_test(t => { 6 navigation.oncurrententrychange = t.step_func_done(e => { 7 assert_equals(e.constructor, NavigationCurrentEntryChangeEvent); 8 assert_false(e.bubbles); 9 assert_false(e.cancelable); 10 assert_true(e.isTrusted); 11 }); 12 location.href = "#1"; 13 }, "NavigationCurrentEntryChangeEvent's properties"); 14 </script>