summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-anonymous-boxes/208305-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/208305-1.html')
-rw-r--r--layout/reftests/table-anonymous-boxes/208305-1.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/208305-1.html b/layout/reftests/table-anonymous-boxes/208305-1.html
new file mode 100644
index 0000000000..95288f1a80
--- /dev/null
+++ b/layout/reftests/table-anonymous-boxes/208305-1.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style type="text/css">
+.cell {display:table-cell}
+</style>
+<script type="text/javascript">
+function doTest() {
+ss = document.styleSheets[0];
+ss.cssRules[0].style.display="block";
+}
+</script>
+</head>
+
+<body onload="doTest()">
+<div class="cell">foo</div><div class="cell">bar</div><div class="cell">baz</div>
+</body>
+
+</html>