summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/589787.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/base/crashtests/589787.html')
-rw-r--r--layout/base/crashtests/589787.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/base/crashtests/589787.html b/layout/base/crashtests/589787.html
new file mode 100644
index 000000000..558a14083
--- /dev/null
+++ b/layout/base/crashtests/589787.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+function boom() {
+ document.documentElement.offsetHeight;
+ document.getElementById('e').setAttribute('style', '');
+ document.documentElement.offsetHeight;
+}
+</script>
+<style id="e">
+body #a::after { content: "before text"; position: fixed; }
+</style>
+</head>
+
+<body onload="boom();" style="-moz-column-count: 2; width: 100px;">
+<div>m</div>
+<div id="a" style="-moz-column-count: 2;">
+m
+<br style="float: left;">
+m
+<span style="float: left;">m</span>
+
+<div style="float: left; -moz-column-width: 9999999999px;"></div>
+</div>
+</body>
+</html>