summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/732870.html
blob: 00823142d0e9642ecf6bb40fdbf8031f5a22a2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>

function boom()
{
  var frameDoc = document.getElementById("f").contentDocument;
  var elem = frameDoc.documentElement;
  elem.dataset;
  document.adoptNode(elem);
  frameDoc.write("0");
  frameDoc.close();
  document.documentElement.removeAttribute("class");
}

</script>
</head>

<body onload="boom();">
<iframe id="f" srcdoc="<html>1</html>"></iframe>
</body>
</html>