diff options
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/white-space-11.html')
-rw-r--r-- | layout/reftests/table-anonymous-boxes/white-space-11.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/white-space-11.html b/layout/reftests/table-anonymous-boxes/white-space-11.html new file mode 100644 index 000000000..918be8fe4 --- /dev/null +++ b/layout/reftests/table-anonymous-boxes/white-space-11.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> + <head> + <title>CSS 2.1 Test Suite: anonymous table boxes</title> + <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" /> + <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> + <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes"/> + <meta name="flags" content="dom" /> + <script> + function doTest() { + var t = document.getElementById("t1"); + t.parentNode.removeChild(t); + t = document.getElementById("t2"); + t.parentNode.removeChild(t); + document.documentElement.className = ""; + } + </script> + </head> + <body onload="doTest()"> + <span> + <span>a</span><span style="display: table-cell" id="t2">e</span> + <span style="display: table-cell" id="t1">f</span><span>bc d</span> + </span> + </body> +</html> |