diff options
Diffstat (limited to 'layout/mathml/crashtests/367107-1.html')
-rw-r--r-- | layout/mathml/crashtests/367107-1.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/mathml/crashtests/367107-1.html b/layout/mathml/crashtests/367107-1.html new file mode 100644 index 0000000000..775ace87e0 --- /dev/null +++ b/layout/mathml/crashtests/367107-1.html @@ -0,0 +1,22 @@ +<html> +<head> +<script> + +function boom() +{ + var MATHML_NS = "http://www.w3.org/1998/Math/MathML"; + + var mtr = document.createElementNS(MATHML_NS, 'mtr'); + var mtable = document.createElementNS(MATHML_NS, 'mtable'); + + document.body.appendChild(mtr); + mtr.appendChild(mtable); +} + +</script> +</head> + +<body onload="boom()"> + +</body> +</html> |