diff options
Diffstat (limited to 'layout/reftests/bugs/399209-1.html')
-rw-r--r-- | layout/reftests/bugs/399209-1.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/bugs/399209-1.html b/layout/reftests/bugs/399209-1.html new file mode 100644 index 000000000..df3546621 --- /dev/null +++ b/layout/reftests/bugs/399209-1.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style> + table { background: white; } + col { background: green; } + td { color: white; } +</style> +<script> +function boom() +{ + var col = document.getElementsByTagName("col")[0]; + col.parentNode.removeChild(col); + document.documentElement.className = ""; +} +</script> +</head> +<body onload="boom();"> +<table> + <col span="3"> + <td>One</td> + <td>Two</td> + <td>Three</td> +</body> +</html> |