summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/451170.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/tables/crashtests/451170.html')
-rw-r--r--layout/tables/crashtests/451170.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/tables/crashtests/451170.html b/layout/tables/crashtests/451170.html
new file mode 100644
index 0000000000..bf5d14dca4
--- /dev/null
+++ b/layout/tables/crashtests/451170.html
@@ -0,0 +1,21 @@
+<html>
+<head>
+<script>
+function doe() {
+document.getElementById('a').style.display = 'table-column-group';
+document.body.offsetHeight;
+}
+</script>
+
+<style>
+div::before { content:"b";}
+div::after { content:"a";}
+</style>
+</head>
+
+<body onload="document.body.offsetHeight; setTimeout(doe,0);">
+<div style="display: table;">
+ <span id="a" style="display: table-header-group; "></span>
+</div>
+</body>
+</html>