summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/423264-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/generic/crashtests/423264-1.html')
-rw-r--r--layout/generic/crashtests/423264-1.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/generic/crashtests/423264-1.html b/layout/generic/crashtests/423264-1.html
new file mode 100644
index 0000000000..9a64867950
--- /dev/null
+++ b/layout/generic/crashtests/423264-1.html
@@ -0,0 +1,19 @@
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<script type="text/javascript">
+
+function boom()
+{
+ var y = document.createTextNode(' Y ');
+ document.getElementById("a").appendChild(y);
+ document.body.offsetHeight;
+ var z = document.createTextNode('Z');
+ document.body.insertBefore(z, document.body.lastChild);
+}
+
+</script>
+</head>
+
+<body onload="boom();"><div style="column-count: 2; width: 1px;"><div id="a">M N矋<span>م</span></div></div>H</body>
+</html>