summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/invokers/interestevent-dispatch-shadow.tentative.html
blob: d96907ec84a439334f601d5002264a1f828a4160 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<meta charset="utf-8" />
<meta name="author" title="Keith Cirkel" href="mailto:keithamus@github.com" />
<meta name="author" title="Luke Warlow" href="mailto:lwarlow@igalia.com" />
<link rel="help" href="https://open-ui.org/components/interest-invokers.explainer/" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/invoker-utils.js"></script>

<div id="div"></div>
<button id="button"></button>

<script>
  test(function () {
    const host = document.createElement("div");
    const shadow = host.attachShadow({ mode: "closed" });
    const slot = shadow.appendChild(document.createElement("slot"));
    let childEvent = null;
    let childEventTarget = null;
    let childEventInvoker = null;
    let hostEvent = null;
    let hostEventTarget = null;
    let hostEventInvoker = null;
    slot.addEventListener(
      "interest",
      (e) => {
        childEvent = e;
        childEventTarget = e.target;
        childEventInvoker = e.invoker;
      },
      { once: true },
    );
    host.addEventListener(
      "interest",
      (e) => {
        hostEvent = e;
        hostEventTarget = e.target;
        hostEventInvoker = e.invoker;
      },
      { once: true },
    );
    const event = new InterestEvent("interest", {
      bubbles: true,
      invoker: slot,
      composed: true,
    });
    slot.dispatchEvent(event);
    assert_true(childEvent instanceof InterestEvent, "slot saw interest event");
    assert_equals(
      childEventTarget,
      slot,
      "target is child inside shadow boundary",
    );
    assert_equals(
      childEventInvoker,
      slot,
      "invoker is child inside shadow boundary",
    );
    assert_equals(
      hostEvent,
      childEvent,
      "event dispatch propagates across shadow boundary",
    );
    assert_equals(
      hostEventTarget,
      host,
      "target is retargeted to shadowroot host",
    );
    assert_equals(
      hostEventInvoker,
      host,
      "invoker is retargeted to shadowroot host",
    );
  }, "InterestEvent propagates across shadow boundaries retargeting invoker");

  test(function (t) {
    const host = document.createElement("div");
    document.body.append(host);
    t.add_cleanup(() => host.remove());
    const shadow = host.attachShadow({ mode: "open" });
    const button = shadow.appendChild(document.createElement("button"));
    const interestee = host.appendChild(document.createElement("div"));
    button.interestTargetElement = interestee;
    let event = null;
    let eventTarget = null;
    let eventInvoker = null;
    interestee.addEventListener(
      "interest",
      (e) => {
        event = e;
        eventTarget = e.target;
        eventInvoker = e.invoker;
      },
      { once: true },
    );
    button.focus();
    assert_true(event instanceof InterestEvent);
    assert_equals(eventTarget, interestee, "target is interestee");
    assert_equals(eventInvoker, host, "interestee is host");
  }, "cross shadow InterestEvent retargets interestee to host element");
</script>