layout/generic/crashtests/472587-1.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/generic/crashtests/472587-1.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
     1.5 +<head>
     1.6 +<script type="text/javascript">
     1.7 +
     1.8 +function boom()
     1.9 +{
    1.10 +  var m = document.getElementById("m");
    1.11 +  m.parentNode.removeChild(m);
    1.12 +  document.getElementById("s").appendChild(document.createTextNode("c"));
    1.13 +}
    1.14 +
    1.15 +</script>
    1.16 +</head>
    1.17 +<body onload="boom();">
    1.18 +
    1.19 +<m:mrow>
    1.20 +  <span>
    1.21 +    <m:msup id="m"/>
    1.22 +    <div style="-moz-column-width: 1px;">
    1.23 +      <m:munderover/>
    1.24 +      <m:msqrt/>
    1.25 +    </div>
    1.26 +  </span>
    1.27 +  <span id="s"></span>
    1.28 +</m:mrow>
    1.29 +
    1.30 +</body>
    1.31 +</html>

mercurial