summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/429088-2.html
blob: f56120ccb2a714a7ef346a509790f7375faea4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

function boom()
{
  window.addEventListener("DOMSubtreeModified", function(){});

  var span = document.createElement("span");
  document.body.appendChild(span);
}

</script>

<style type="text/css">

span:before { content: '0'; }
span:after { content: '1'; }

</style>
</head>

<body onload="boom();"></body>
</html>