|
40 | 40 | 'The innerHTML of <selectedcontent> should initially match the innerHTML of the selected <option>.');
|
41 | 41 |
|
42 | 42 | select.value = 'two';
|
43 |
| - await new Promise(queueMicrotask); |
44 | 43 | assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
|
45 | 44 | 'The innerHTML of <selectedcontent> should change after the selected option is changed.');
|
46 | 45 |
|
47 | 46 | let oldInnerHTML = optionTwo.innerHTML;
|
48 | 47 | spanTwo.textContent = 'new span';
|
49 |
| - await new Promise(queueMicrotask); |
50 | 48 | assert_equals(selectedcontent.innerHTML, oldInnerHTML,
|
51 | 49 | '<selectedcontent> should not respond to <option> text content changes.');
|
52 | 50 |
|
53 | 51 | spanTwo.appendChild(document.createElement('div'));
|
54 |
| - await new Promise(queueMicrotask); |
55 | 52 | assert_equals(selectedcontent.innerHTML, oldInnerHTML,
|
56 | 53 | '<selectedcontent> should not respond to new elements being added to descendants of <option>.');
|
57 | 54 |
|
58 | 55 | spanTwo.setAttribute('data-foo', 'bar');
|
59 |
| - await new Promise(queueMicrotask); |
60 | 56 | assert_equals(selectedcontent.innerHTML, oldInnerHTML,
|
61 | 57 | '<selectedcontent> should not respond to attributes being added to descendants of <option>.');
|
62 | 58 |
|
| 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 | + |
63 | 68 | form.reset();
|
64 |
| - await new Promise(queueMicrotask); |
65 | 69 | assert_equals(select.value, 'one',
|
66 | 70 | 'form.reset() should change the selects value to one.');
|
67 | 71 | assert_equals(selectedcontent.innerHTML, optionOne.innerHTML,
|
|
70 | 74 | await test_driver.bless();
|
71 | 75 | select.showPicker();
|
72 | 76 | await test_driver.click(optionTwo);
|
73 |
| - await new Promise(queueMicrotask); |
74 | 77 | assert_equals(select.value, 'two',
|
75 | 78 | 'Clicking on another option should change select.value.');
|
76 | 79 | assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
|
77 | 80 | 'Clicking on an option element should update the <selectedcontent>.');
|
78 | 81 |
|
79 | 82 | selectedcontent.remove();
|
80 |
| - await new Promise(queueMicrotask); |
81 | 83 | assert_equals(selectedcontent.innerHTML, '',
|
82 | 84 | 'Removing the <selectedcontent> from the <select> should make it clear its contents.');
|
83 | 85 | button.appendChild(selectedcontent);
|
84 | 86 | assert_equals(selectedcontent.innerHTML, optionTwo.innerHTML,
|
85 | 87 | 'Re-inserting the <selectedcontent> should make it update its contents.');
|
86 | 88 |
|
87 | 89 | optionTwo.remove();
|
88 |
| - await new Promise(queueMicrotask); |
89 | 90 | assert_equals(selectedcontent.innerHTML, optionOne.innerHTML,
|
90 | 91 | 'The innerHTML of <selectedcontent> should be updated in response to selected <option> removal.');
|
91 | 92 | optionOne.remove();
|
|
0 commit comments