File: button-event-dispatch.html

package info (click to toggle)
firefox-esr 140.3.1esr-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,539,016 kB
  • sloc: cpp: 7,380,478; javascript: 6,388,099; ansic: 3,710,142; python: 1,393,715; xml: 628,165; asm: 426,918; java: 184,025; sh: 65,742; makefile: 19,302; objc: 13,059; perl: 12,912; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,226; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (226 lines) | stat: -rw-r--r-- 9,648 bytes parent folder | download | duplicates (8)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!doctype html>
<meta charset="utf-8" />
<meta name="author" title="Keith Cirkel" href="mailto:wpt@keithcirkel.co.uk" />
<meta name="timeout" content="long" />
<link rel="help" href="https://open-ui.org/components/invokers.explainer/" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/invoker-utils.js"></script>

<div id="invokee"></div>
<button id="invokerbutton" commandfor="invokee" command="--custom-command"></button>
<input type="button" id="invalidbutton" commandfor="invokee" command="--custom-command">
<form id="aform"></form>

<script>
  aform.addEventListener('submit', (e) => (e.preventDefault()));

  function resetState() {
    invokerbutton.setAttribute("commandfor", "invokee");
    invokerbutton.setAttribute("command", "--custom-command");
    invokerbutton.removeAttribute("disabled");
    invokerbutton.removeAttribute("form");
    invokerbutton.removeAttribute("type");
  }

  test(function (t) {
    let event = null;
    invokee.addEventListener("command", (e) => (event = e), { once: true });
    invokerbutton.click();
    assert_true(event instanceof CommandEvent, "event is CommandEvent");
    assert_equals(event.type, "command", "type");
    assert_equals(event.bubbles, false, "bubbles");
    assert_equals(event.composed, true, "composed");
    assert_equals(event.isTrusted, true, "isTrusted");
    assert_equals(event.command, "--custom-command", "command");
    assert_equals(event.target, invokee, "target");
    assert_equals(event.source, invokerbutton, "source");
  }, "event dispatches on click with addEventListener");

  test(function (t) {
    let event = null;
    t.add_cleanup(() => {
        invokee.oncommand = null;
    });
    invokee.oncommand = (e) => (event = e);
    invokerbutton.click();
    assert_true(event instanceof CommandEvent, "event is CommandEvent");
    assert_equals(event.type, "command", "type");
    assert_equals(event.bubbles, false, "bubbles");
    assert_equals(event.composed, true, "composed");
    assert_equals(event.isTrusted, true, "isTrusted");
    assert_equals(event.command, "--custom-command", "command");
    assert_equals(event.target, invokee, "target");
    assert_equals(event.source, invokerbutton, "source");
  }, "event dispatches on click with oncommand property");

  // valid custom invokeactions
  ["--foo", "--foo-", "--cAsE-cArRiEs", "--", "--a-", "--a-b", "---", "--show-picker"].forEach(
    (command) => {
      test(function (t) {
        t.add_cleanup(resetState);
        let event = null;
        invokee.addEventListener("command", (e) => (event = e), { once: true });
        invokerbutton.command = command;
        invokerbutton.click();
        assert_true(event instanceof CommandEvent, "event is CommandEvent");
        assert_equals(event.type, "command", "type");
        assert_equals(event.bubbles, false, "bubbles");
        assert_equals(event.composed, true, "composed");
        assert_equals(event.isTrusted, true, "isTrusted");
        assert_equals(event.command, command, "command");
        assert_equals(event.target, invokee, "target");
        assert_equals(event.source, invokerbutton, "source");
      }, `setting custom command property to ${command} (must include dash) sets event command`);

      test(function (t) {
        t.add_cleanup(resetState);
        let event = null;
        invokee.addEventListener("command", (e) => (event = e), { once: true });
        invokerbutton.setAttribute("command", command);
        invokerbutton.click();
        assert_true(event instanceof CommandEvent, "event is CommandEvent");
        assert_equals(event.type, "command", "type");
        assert_equals(event.bubbles, false, "bubbles");
        assert_equals(event.composed, true, "composed");
        assert_equals(event.isTrusted, true, "isTrusted");
        assert_equals(event.command, command, "command");
        assert_equals(event.target, invokee, "target");
        assert_equals(event.source, invokerbutton, "source");
      }, `setting custom command attribute to ${command} (must include dash) sets event command`);
    },
  );

  // invalid custom invokeactions
  ["-foo", "-foo-", "foo-bar", "-foo bar", "—-emdash", "hidedocument"].forEach((command) => {
    test(function (t) {
      t.add_cleanup(resetState);
      let event = null;
      invokee.addEventListener("command", (e) => (event = e), { once: true });
      invokerbutton.command = command;
      invokerbutton.click();
      assert_equals(event, null, "event should not have fired");
    }, `setting custom command property to ${command} (no dash) did not dispatch an event`);

    test(function (t) {
      t.add_cleanup(resetState);
      let event = null;
      invokee.addEventListener("command", (e) => (event = e), { once: true });
      invokerbutton.setAttribute("command", command);
      invokerbutton.click();
      assert_equals(event, null, "event should not have fired");
    }, `setting custom command attribute to ${command} (no dash) did not dispatch an event`);
  });

  test(function (t) {
    let called = false;
    invokerbutton.addEventListener(
      "click",
      (event) => {
        event.preventDefault();
      },
      { once: true },
    );
    invokee.addEventListener(
      "command",
      (event) => {
        called = true;
      },
      { once: true },
    );
    invokerbutton.click();
    assert_false(called, "event was not called");
  }, "event does not dispatch if click:preventDefault is called");

  test(function (t) {
    let event = null;
    invokee.addEventListener("command", (e) => (event = e), { once: true });
    invalidbutton.click();
    assert_equals(event, null, "command should not have fired");
  }, "event does not dispatch on input[type=button]");

  test(function (t) {
    t.add_cleanup(resetState);
    let called = false;
    invokee.addEventListener("command", (e) => (called = true), { once: true });
    invokerbutton.setAttribute("disabled", "");
    invokerbutton.click();
    assert_false(called, "event was not called");
  }, "event does not dispatch if invoker is disabled");

  test(function (t) {
    t.add_cleanup(resetState);
    let called = false;
    invokee.addEventListener("command", (e) => (called = true), { once: true });
    invokerbutton.setAttribute("form", "aform");
    invokerbutton.removeAttribute("type");
    invokerbutton.click();
    assert_false(called, "event was not called");
  }, "event does NOT dispatch if button is form associated, with implicit type");

  test(function (t) {
    t.add_cleanup(resetState);
    let called = false;
    invokee.addEventListener("command", (e) => (called = true), { once: true });
    invokerbutton.setAttribute("form", "aform");
    invokerbutton.setAttribute("type", "invalid");
    invokerbutton.click();
    assert_false(called, "event was not called");
  }, "event does NOT dispatch if button is form associated, with explicit type=invalid");

  test(function (t) {
    t.add_cleanup(resetState);
    let event;
    invokee.addEventListener("command", (e) => (event = e), { once: true });
    invokerbutton.setAttribute("form", "aform");
    invokerbutton.setAttribute("type", "button");
    invokerbutton.click();
    assert_true(event instanceof CommandEvent, "event is CommandEvent");
    assert_equals(event.type, "command", "type");
    assert_equals(event.bubbles, false, "bubbles");
    assert_equals(event.composed, true, "composed");
    assert_equals(event.isTrusted, true, "isTrusted");
    assert_equals(event.command, "--custom-command", "command");
    assert_equals(event.target, invokee, "target");
    assert_equals(event.source, invokerbutton, "source");
  }, "event dispatches if button is form associated, with explicit type=button");

  test(function (t) {
    t.add_cleanup(resetState);
    let called = false;
    invokee.addEventListener("command", (e) => (called = true), { once: true });
    invokerbutton.setAttribute("form", "aform");
    invokerbutton.setAttribute("type", "submit");
    invokerbutton.click();
    assert_false(called, "event was not called");
  }, "event does NOT dispatch if button is form associated, with explicit type=submit");

  test(function (t) {
    t.add_cleanup(resetState);
    let called = false;
    invokee.addEventListener("command", (e) => (called = true), { once: true });
    invokerbutton.setAttribute("form", "aform");
    invokerbutton.setAttribute("type", "reset");
    invokerbutton.click();
    assert_false(called, "event was called");
  }, "event does NOT dispatch if button is form associated, with explicit type=reset");

  test(function (t) {
    svgInvokee = document.createElementNS("http://www.w3.org/2000/svg", "svg");
    svgInvokee.setAttribute("id", "svg-invokee");
    t.add_cleanup(resetState);
    document.body.append(svgInvokee);
    assert_false(svgInvokee instanceof HTMLElement);
    assert_true(svgInvokee instanceof Element);
    let event = null;
    svgInvokee.addEventListener("command", (e) => (event = e), { once: true });
    invokerbutton.setAttribute("commandfor", "svg-invokee");
    invokerbutton.setAttribute("command", "--custom-command");
    assert_equals(invokerbutton.commandForElement, svgInvokee);
    invokerbutton.click();
    assert_not_equals(event, null, "event was called");
    assert_true(event instanceof CommandEvent, "event is CommandEvent");
    assert_equals(event.source, invokerbutton, "event.invoker is set to right element");
    assert_equals(event.target, svgInvokee, "event.target is set to right element");
  }, "event dispatches if invokee is non-HTML Element");
</script>