summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-events.tentative.html
blob: a88a3b1f7da0b62cd4d6bb1fcc13764a9c165fe6 (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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<title>HTMLSelectListElement Test: events</title>
<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>

<selectlist id="selectList0">
  <div slot="button" behavior="button">
    <span behavior="selected-value"></span>
    <button id="selectList0-button">selectList0-button</button>
  </div>
  <option>one</option>
  <option>two</option>
  <option>three</option>
</selectlist>

<selectlist id="selectList1">
  <option>one</option>
  <option>
    two
    <button id="selectList1-button">selectList1-button</button>
  </option>
  <option>three</option>
</selectlist>

<selectlist id="selectList2">
  <option>one</option>
  <option>two</option>
  <option>three</option>
</selectlist>

<selectlist id="selectList3">
  <option>same</option>
  <option>same</option>
</selectlist>

<selectlist id="selectList4">
  <option>one</option>
  <option id="selectList4-option2">two</option>
</selectlist>

<selectlist id="selectList5WithTabIndex" tabindex="1">
  <option>one</option>
  <option>two</option>
</selectlist>

<input id="input6"/>
<selectlist id="selectList7">
  <button slot="button" behavior="button" id="selectList7-button">
    selectList7-button
  </button>
  <option>one</option>
  <option>two</option>
</selectlist>

<script>

  function clickOn(element) {
    const actions = new test_driver.Actions();
    return actions.pointerMove(0, 0, {origin: element})
      .pointerDown({button: actions.ButtonType.LEFT})
      .pointerUp({button: actions.ButtonType.LEFT})
      .send();
  }

  promise_test(async () => {
    const selectList = document.getElementById("selectList0");
    const selectListButton = document.getElementById("selectList0-button");
    assert_false(selectList.open);
    const selectListButtonPromise = new Promise(async resolve => {
      selectListButton.addEventListener("click", (e) => {
        assert_false(selectList.open, "Listbox shouldn't have opened yet");
        // PreventDefaulting the event here should prevent UA controller code
        // on the button part from opening the listbox.
        e.preventDefault();
        resolve();
      });
    });

    const selectListPromise = new Promise(async resolve => {
      selectList.addEventListener("click", (e) => {
        assert_true(e.defaultPrevented, "Event should have been defaultPrevented by selectListButton click handler");
        assert_false(selectList.open, "Listbox shouldn't have opened, because click event was defaultPrevented.");
        resolve();
      });
    });

    await clickOn(selectListButton);
    return Promise.all([selectListButtonPromise, selectListPromise]);
  }, "Button controller code should not run if the click event is preventDefaulted.");

  // See https://w3c.github.io/webdriver/#keyboard-actions
  const KEY_CODE_MAP = {
    'Tab':        '\uE004',
    'Enter':      '\uE007',
    'Space':      '\uE00D',
    'ArrowUp':    '\uE013',
    'ArrowDown':  '\uE015',
  };

  promise_test(async () => {
    const selectList = document.getElementById("selectList1");
    const selectListButton = document.getElementById("selectList1-button");
    await clickOn(selectList);
    assert_true(selectList.open);
    const selectListButtonPromise = new Promise(async resolve => {
      selectListButton.addEventListener("click", (e) => {
        assert_true(selectList.open, "Listbox shouldn't have closed yet");
        // PreventDefaulting the event here should prevent UA controller code
        // on the listbox part from selecting the option and closing the listbox.
        e.preventDefault();
        resolve();
      });
    });

    const selectListPromise = new Promise(async resolve => {
      selectList.addEventListener("click", (e) => {
        assert_true(e.defaultPrevented, "Event should have been defaultPrevented by selectListButton click handler");
        assert_true(selectList.open, "Listbox shouldn't have closed, because keydown event was defaultPrevented.");
        assert_equals(selectList.value, "one", "<selectlist> shouldn't have changed value, because keydown event was defaultPrevented.");
        resolve();
      });
    });

    await clickOn(selectListButton);
    return Promise.all([selectListButtonPromise, selectListPromise]);
  }, "Listbox controller code should not run if the click event is preventDefaulted.");

  promise_test(async () => {
    const selectList = document.getElementById("selectList2");
    const events = [];

    selectList.addEventListener("input", (e) => {
      assert_true(e.composed, "input event should be composed.");
      events.push('input');
    });
    selectList.addEventListener("change", (e) => {
      assert_false(e.composed, "change event should not be composed.");
      events.push('change');
    });

    await clickOn(selectList);
    assert_true(selectList.open);
    await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
    assert_false(selectList.open);
    assert_equals(selectList.value, "one");
    assert_array_equals(events, [], "input and change shouldn't fire if value wansn't changed.");

    await clickOn(selectList);
    assert_true(selectList.open);
    await test_driver.send_keys(selectList, KEY_CODE_MAP.ArrowDown);
    assert_equals(selectList.value, "one", "value shouldn't change when user switches options with arrow key.");
    assert_array_equals(events, ['input'], "input event should fire when user switches options with arrow key.");

    await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
    assert_equals(selectList.value, "two");
    assert_array_equals(events, ['input', 'input', 'change'], "input and change should fire after pressing enter.");
  }, "<selectlist> should fire input and change events when new option is selected.");

  promise_test(async () => {
    const selectList = document.getElementById("selectList3");
    const events = [];

    selectList.addEventListener("input", (e) => {
      assert_true(e.composed, "input event should be composed.");
      events.push('input');
    });
    selectList.addEventListener("change", (e) => {
      assert_false(e.composed, "change event should not be composed.");
      events.push('change');
    });

    await clickOn(selectList);
    assert_true(selectList.open);
    await test_driver.send_keys(selectList, KEY_CODE_MAP.ArrowDown);
    assert_array_equals(events, ['input'], "input event should have fired after ArrowDown.");
    await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
    assert_array_equals(events, ['input', 'input', 'change'], "input and change should fire after pressing Enter.");
  }, "<selectlist> should fire input and change events even when new selected option has the same value as the old.");

  promise_test(async () => {
    const selectList = document.getElementById("selectList4");
    const selectListOption2 = document.getElementById("selectList4-option2");
    let input_event_count = 0;
    let change_event_count = 0;

    selectList.addEventListener("input", (e) => {
      assert_true(e.composed, "input event should be composed");
      assert_equals(input_event_count, 0, "input event should not fire twice");
      assert_equals(change_event_count, 0, "input event should not fire before change");
      input_event_count++;
    });

    selectList.addEventListener("change", (e) => {
      assert_false(e.composed, "change event should not be composed");
      assert_equals(input_event_count, 1, "change event should fire after input");
      assert_equals(change_event_count, 0, "change event should not fire twice");
      change_event_count++;
    });

    await clickOn(selectList);
    assert_true(selectList.open);
    await clickOn(selectListOption2);
    assert_equals(input_event_count, 1, "input event shouldn't fire when selected option didn't change");
    assert_equals(change_event_count, 1, "change event shouldn't fire when selected option didn't change");
  }, "<selectlist> should fire input and change events when option in listbox is clicked");

  promise_test(async() => {
    const selectList = document.getElementById("selectList2");
    await test_driver.send_keys(selectList, " ");
    assert_true(selectList.open, "<Space> should open selectlist");
    await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
    assert_false(selectList.open, "<Enter> should close selectlist");
  }, "Check that <Space> opens <selectlist>.");

  promise_test(async() => {
    const selectList = document.getElementById("selectList5WithTabIndex");
    await test_driver.send_keys(selectList, " ");
    assert_true(selectList.open, "<Space> should open selectlist");
    await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
    assert_false(selectList.open, "<Enter> should close selectlist");
  }, "Check that <Space> opens <selectlist> when <selectlist> specifies tabindex");

  promise_test(async() => {
    const input6 = document.getElementById("input6");
    const selectList = document.getElementById("selectList7");
    const selectListButton = document.getElementById("selectList7-button")

    var keydown_count = 0;
    selectListButton.addEventListener("keydown", (e) => {
      keydown_count++;
    });

    // Focus selectlist via Tab traversal because focus() does not work when selectlist
    // has custom slot.
    // TODO(http://crbug.com/1440573) Fix this.
    await test_driver.send_keys(input6, KEY_CODE_MAP.Tab);

    await test_driver.send_keys(selectList, "a");
    assert_equals(keydown_count, 1, "button in shadowroot should have observed keydown");
}, "Test that <selectlist> button slot receives key events.");
</script>