chromium/third_party/blink/web_tests/external/wpt/dom/nodes/Document-createElement-namespace-tests/xhtml_ns_removed.xhtml

<html xmlns="http://www.w3.org/1999/xhtml">
  <head><script>
    var newRoot = document.createElementNS(null, "html");
    document.removeChild(document.documentElement);
    document.appendChild(newRoot);
  </script></head>
</html>