Skip to content

Commit e60fed9

Browse files
Update <selectedcontent> test for OpenUI resolution
This patch adds test cases corresponding to this OpenUI resolution: openui/open-ui#1119 (comment) It also cleans up the leftover queueMicrotask calls which are no longer needed now that things are synchronous. Change-Id: I1031d2899197e313dd9eb20a142868930b886a28 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6086797 Reviewed-by: Traian Captan <[email protected]> Commit-Queue: Joey Arhar <[email protected]> Cr-Commit-Position: refs/heads/main@{#1395174}
1 parent 1b5c481 commit e60fed9

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

html/semantics/forms/the-select-element/customizable-select/selectedcontent.tentative.html

+9-8
Original file line numberDiff line numberDiff line change
@@ -40,28 +40,32 @@
4040
'The innerHTML of <selectedcontent> should initially match the innerHTML of the selected <option>.');
4141

4242
select.value = 'two';
43-
await new Promise(queueMicrotask);
4443
assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
4544
'The innerHTML of <selectedcontent> should change after the selected option is changed.');
4645

4746
let oldInnerHTML = optionTwo.innerHTML;
4847
spanTwo.textContent = 'new span';
49-
await new Promise(queueMicrotask);
5048
assert_equals(selectedcontent.innerHTML, oldInnerHTML,
5149
'<selectedcontent> should not respond to <option> text content changes.');
5250

5351
spanTwo.appendChild(document.createElement('div'));
54-
await new Promise(queueMicrotask);
5552
assert_equals(selectedcontent.innerHTML, oldInnerHTML,
5653
'<selectedcontent> should not respond to new elements being added to descendants of <option>.');
5754

5855
spanTwo.setAttribute('data-foo', 'bar');
59-
await new Promise(queueMicrotask);
6056
assert_equals(selectedcontent.innerHTML, oldInnerHTML,
6157
'<selectedcontent> should not respond to attributes being added to descendants of <option>.');
6258

59+
select.value = select.value;
60+
assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
61+
'<selectedcontent> should be updated in response to re-assigning select.value.');
62+
63+
spanTwo.firstElementChild.remove();
64+
select.selectedIndex = select.selectedIndex;
65+
assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
66+
'<selectedcontent> should be updated in response to re-assigning select.selectedIndex.');
67+
6368
form.reset();
64-
await new Promise(queueMicrotask);
6569
assert_equals(select.value, 'one',
6670
'form.reset() should change the selects value to one.');
6771
assert_equals(selectedcontent.innerHTML, optionOne.innerHTML,
@@ -70,22 +74,19 @@
7074
await test_driver.bless();
7175
select.showPicker();
7276
await test_driver.click(optionTwo);
73-
await new Promise(queueMicrotask);
7477
assert_equals(select.value, 'two',
7578
'Clicking on another option should change select.value.');
7679
assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
7780
'Clicking on an option element should update the <selectedcontent>.');
7881

7982
selectedcontent.remove();
80-
await new Promise(queueMicrotask);
8183
assert_equals(selectedcontent.innerHTML, '',
8284
'Removing the <selectedcontent> from the <select> should make it clear its contents.');
8385
button.appendChild(selectedcontent);
8486
assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
8587
'Re-inserting the <selectedcontent> should make it update its contents.');
8688

8789
optionTwo.remove();
88-
await new Promise(queueMicrotask);
8990
assert_equals(selectedcontent.innerHTML, optionOne.innerHTML,
9091
'The innerHTML of <selectedcontent> should be updated in response to selected <option> removal.');
9192
optionOne.remove();

0 commit comments

Comments
 (0)