summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1419799.html
blob: b6d34a1a97960f39f049f610eda1009239e5085e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
  <head>
    <script>
      try { o1 = document.createElement('textarea') } catch(e) { }
      try { o2 = document.createElement('div') } catch(e) { }
      try { o3 = document.createElement('map') } catch(e) { }
      try { document.documentElement.appendChild(o2) } catch(e) { }
      try { o2.appendChild(o1) } catch(e) { }
      try { document.documentElement.getClientRects() } catch(e) { }
      try { o4 = o2.attachShadow({ mode: "open" }); } catch(e) { }
      try { o1.appendChild(o3) } catch(e) { }
      try { o5 = o3.parentElement } catch(e) { }
      try { o3.outerHTML = "\n" } catch(e) { }
      try { o4.prepend("", o5, "") } catch(e) { }
    </script>
  </head>
</html>