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