summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/crashtests/mozilla/405271-1.xml
blob: c94525c6383c90a9b3d4f16768bc664148720e09 (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
26
27
28
29
30
31
32
33
34
35
36
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
<head>

<style type="text/css">
#q { width: 16px; height: 16px; }
#a, #b { counter-increment: chicken; }
</style>

<style id="s" type="text/css">
#a { content: 'x'; }
</style>

<script type="text/javascript">

function boom()
{
  remove(document.getElementById("s"));
  remove(document.getElementById("b"));
}

function remove(n)
{
  n.parentNode.removeChild(n);
}

</script>

</head>

<body onload="boom();">

<m:mrow id="a"/><m:mo id="q"><m:malignmark><m:msubsup/><m:munderover/><m:munder id="b"/></m:malignmark></m:mo>

</body>

</html>