summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/navigation-api/currententrychange-event/properties.html')
-rw-r--r--testing/web-platform/tests/navigation-api/currententrychange-event/properties.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html b/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html
new file mode 100644
index 0000000000..e862543bcc
--- /dev/null
+++ b/testing/web-platform/tests/navigation-api/currententrychange-event/properties.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+async_test(t => {
+ navigation.oncurrententrychange = t.step_func_done(e => {
+ assert_equals(e.constructor, NavigationCurrentEntryChangeEvent);
+ assert_false(e.bubbles);
+ assert_false(e.cancelable);
+ assert_true(e.isTrusted);
+ });
+ location.href = "#1";
+}, "NavigationCurrentEntryChangeEvent's properties");
+</script>