summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-anonymous-boxes/394402-1b.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/394402-1b.html')
-rw-r--r--layout/reftests/table-anonymous-boxes/394402-1b.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/394402-1b.html b/layout/reftests/table-anonymous-boxes/394402-1b.html
new file mode 100644
index 0000000000..ef6407eb0a
--- /dev/null
+++ b/layout/reftests/table-anonymous-boxes/394402-1b.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <head>
+ <style>
+ body { font-family: sans-serif; }
+ </style>
+ <script>
+ function runTest() {
+ document.getElementById('r').appendChild(document.createTextNode('x'));
+ document.getElementById('r').appendChild(document.createTextNode('x'));
+ document.getElementById('r').appendChild(document.createTextNode('x'));
+ document.body.normalize();
+ document.documentElement.className = "";
+ }
+ </script>
+ </head>
+<body onload="runTest()">
+
+<table border=1 id="t"><tbody><tr id="r"><td id="c">TD</td></tr></tbody></table>
+
+</body>
+</html>