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