aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/portals/portal-activate-event-constructor.html
blob: 7263b121151f5b1331622c0c7007df49f90b6376 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
  // Even though UA-generated portalactivate events are different, the
  // properties supplied should be used.
  const e = new PortalActivateEvent("eventtype", { bubbles: true, cancelable: true });
  assert_equals(e.type, "eventtype");
  assert_true(e.bubbles);
  assert_true(e.cancelable);
  assert_equals(null, e.data);
}, "It should be possible to construct a PortalActivateEvent with a dictionary");

test(() => {
  const data = {};
  const e = new PortalActivateEvent("portalactivate", { data });
  assert_equals(data, e.data);
}, "A PortalActivateEvent should expose exactly the data object supplied in the original realm");

test(() => {
  const e = new PortalActivateEvent("portalactivate");
  assert_throws("InvalidStateError", () => e.adoptPredecessor());
}, "Invoking adoptPredecessor on a synthetic PortalActivateEvent should throw");
</script>