diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/371925-1a.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/bugs/371925-1a.html b/layout/reftests/bugs/371925-1a.html new file mode 100644 index 0000000000..fd1d69da37 --- /dev/null +++ b/layout/reftests/bugs/371925-1a.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<body> + +<table id="theTable" border="1"><thead id="thead"> + <tr><th>Header</th></tr> + </thead> + <tfoot id="tfoot"><tr><th>Footer</th></tr></tfoot> + <tbody><tr><td id="body">BODY</td></tr></tbody> +</table> + +<script> +var style = document.getElementById('tfoot').style; +style.display = "none"; +document.body.offsetWidth; +style.display = "table-footer-group"; +document.body.offsetWidth; +style.display = "none"; +</script> + +</body> +</html> |