diff options
Diffstat (limited to 'layout/reftests/table-width/percent-small-nested-ref.html')
-rw-r--r-- | layout/reftests/table-width/percent-small-nested-ref.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/table-width/percent-small-nested-ref.html b/layout/reftests/table-width/percent-small-nested-ref.html new file mode 100644 index 0000000000..e7a5340af2 --- /dev/null +++ b/layout/reftests/table-width/percent-small-nested-ref.html @@ -0,0 +1,36 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Percent widths on table cells</title> +<style type="text/css"> + +td > table { + border-spacing: 3px 5px; + padding: 2px 3px 4px 5px; +} + +td { + border: none; + padding: 0; +} + +span { + display: inline-block; + width: 50px; + background: fuchsia; + color: fuchsia; +} + +</style> +</head> +<body> + +<table border><tr><td> +<table><tr> +<td style="background: yellow;color:yellow;width:100px"><span>x</span></td> +<td style="background:aqua;color:aqua;width:100px"><span>x</span>​<span>x</span>​<span>x</span></td> +</tr></table> +</td></tr></table> + +</body> +</html> |