diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/table-caption-1-ref.html')
-rw-r--r-- | layout/reftests/margin-collapsing/table-caption-1-ref.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/table-caption-1-ref.html b/layout/reftests/margin-collapsing/table-caption-1-ref.html new file mode 100644 index 0000000000..0b98396d10 --- /dev/null +++ b/layout/reftests/margin-collapsing/table-caption-1-ref.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#block1, #block2 { + height: 20px; + background-color: green; +} +#table { + width: 100px; + margin-right: auto; +} +#caption { + height: 20px; + background-color: blue; +} +.spacer { + height: 30px; +} +</style> +</head> +<body> +<div id="block1"></div> +<div class="spacer"></div> +<div id="table"> + <div id="caption"></div> +</div> +<div class="spacer"></div> +<div id="block2"></div> +</body> +</html> |