summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/492661-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/492661-1.html')
-rw-r--r--layout/reftests/bugs/492661-1.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/bugs/492661-1.html b/layout/reftests/bugs/492661-1.html
new file mode 100644
index 0000000000..c22de45142
--- /dev/null
+++ b/layout/reftests/bugs/492661-1.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script type="text/javascript">
+function boom()
+{
+ var tbody = document.getElementById("tbody");
+ var table = tbody.parentNode;
+ table.removeChild(tbody);
+ document.documentElement.offsetHeight;
+ table.appendChild(tbody);
+}
+</script>
+</head>
+
+<body onload="boom();">
+
+<table>
+<col>
+<col style="visibility: collapse;"><col>
+<tbody id="tbody">
+ <tr>
+ <td>one</td>
+ <td>two</td>
+ </tr>
+ <tr>
+ <td>one</td>
+ <td>two</td>
+ </tr>
+</tbody>
+</table>
+
+</body>
+</html>