| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <body> |
| 3 <script src="../../../resources/testharness.js"></script> |
| 4 <script src="../../../resources/testharnessreport.js"></script> |
| 5 <select></select> |
| 6 <script> |
| 7 test(() => { |
| 8 var select = document.querySelector('select'); |
| 9 select.addEventListener('DOMSubtreeModified', () => { |
| 10 if (select.options[0]) |
| 11 select.removeChild(select.options[0]); |
| 12 }, false); |
| 13 select[0] = new Option('option1', '', true, true); |
| 14 }, 'select.add() should not trigger an assertion failure.'); |
| 15 </script> |
| 16 </body> |
| OLD | NEW |