summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/1440523.html
blob: 11ce69978197548e434b4b45c2c3a7013f700e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
  <head>
    <script>
      try { frame = document.createElement('frame') } catch(e) { }
      try { document.documentElement.appendChild(frame) } catch(e) { }
      try { contentDocument = frame.contentDocument } catch(e) { }
      try { contentDocument.writeln("<p contenteditable='true'>") } catch(e) { }
      try { anotherDocument = document.implementation.createHTMLDocument(); } catch(e) { }
      try { rootOfAnotherDocument = anotherDocument.documentElement; } catch(e) { }
      try { document.replaceChild(rootOfAnotherDocument, document.documentElement); } catch(e) { }
   </script>
  </head>
</html>