summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/optgroup-removal.window.js
blob: 4e4c2df77e317c68f9858d7f8692f27380688d10 (plain)
1
2
3
4
5
6
7
test(() => {
  const select = document.createElement("select");
  select.innerHTML = "<optgroup><option>1<optgroup><option>2";
  assert_equals(select.value, "1");
  select.querySelector("optgroup").remove();
  assert_equals(select.value, "2");
}, "<select> needs to be updated when <optgroup> is removed");