https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 717b1cdc7109767ac16cf4aaa0e6c4803352a9e8 authored by Ted Campbell on 07 November 2020, 05:36:31 UTC
Bug 1675905 - Simplify IonBuilder::createThisScripted. r=jandem,iain a=RyanVM
Tip revision: 717b1cd
338674-1.xhtml
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>

<script>

function boom()
{
  var s = document.getElementById("s")
  var t = s.previousSibling; // a whitespace text node..

  document.addEventListener("DOMAttrModified", bang, false);
  rM(s);
  document.removeEventListener("DOMAttrModified", bang, false);

  function bang(ev) {
    document.removeEventListener("DOMAttrModified", bang, false); // avoid accidental recursion, multiple calls, etc.
    rM(t);
  }
  
  document.documentElement.removeAttribute("class");
}

function rM(n) { n.parentNode.removeChild(n); }

</script>

</head>

<body onload="setTimeout(boom, 1);">

<div><select><option>C</option></select></div>

<span id="s">A <div>B</div></span>

</body>
</html>
back to top