diff options
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/372649-1.html')
-rw-r--r-- | layout/reftests/table-anonymous-boxes/372649-1.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/372649-1.html b/layout/reftests/table-anonymous-boxes/372649-1.html new file mode 100644 index 0000000000..4a92d227ff --- /dev/null +++ b/layout/reftests/table-anonymous-boxes/372649-1.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#it { display: inline-table; } +</style> +</head> +<body> +<p>a<span id="it">b</span>d</p> +<script> +document.body.offsetWidth; +document.getElementById("it").appendChild(document.createTextNode("c")); +</script> +</body> +</html> |