summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-anonymous-boxes/203923-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/203923-2.html')
-rw-r--r--layout/reftests/table-anonymous-boxes/203923-2.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/203923-2.html b/layout/reftests/table-anonymous-boxes/203923-2.html
new file mode 100644
index 0000000000..783ca6e789
--- /dev/null
+++ b/layout/reftests/table-anonymous-boxes/203923-2.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<head>
+ <script type="text/javascript">
+ function doTest() {
+ var t = document.getElementById("t");
+ t.style.display = "none";
+ document.body.offsetWidth;
+ t.style.display = "table-cell";
+ document.documentElement.className = "";
+ }
+ </script>
+</head>
+<body onload="doTest()">
+ <span style="display: block">
+ <span style="display: table-cell">a</span>
+ <span style="display: table-cell; white-space: pre"> </span>
+ <span style="display: table-cell;" id="t">bc</span>
+ <span style="display: table-cell; white-space: pre"> </span>
+ <span style="display: table-cell">d</span>
+</body>
+</html>