diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/columns/margin-collapsing-bug616722-2.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/columns/margin-collapsing-bug616722-2.html')
-rw-r--r-- | layout/reftests/columns/margin-collapsing-bug616722-2.html | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/layout/reftests/columns/margin-collapsing-bug616722-2.html b/layout/reftests/columns/margin-collapsing-bug616722-2.html new file mode 100644 index 000000000..ad3497465 --- /dev/null +++ b/layout/reftests/columns/margin-collapsing-bug616722-2.html @@ -0,0 +1,80 @@ +<!DOCTYPE html> +<html><head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <title>616722-2</title> + + <style type="text/css"> + body,html { margin:0;padding: 10px;} + p { margin: 3px 0; background:pink; } + div { + background-color:lime; + margin: 0em; + border: 1px solid black; + } + .no-border { + border-style: none; + } + + .columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + } + </style> +</head> +<body> + <div class="columns no-border" style="margin:10px 0"></div> + <div class="columns"> + <p style="margin-top:10px">1</p> + <p>2</p> + <p>3</p> + </div> + <div class="columns no-border" style="padding:10px 0;background:none"><p></p></div> + <div class="columns"> + <p style="margin-bottom:10px">1</p> + <p>2</p> + <p style="margin-bottom:20px">3</p> + </div> + <div class="columns"> + <p style="margin:10px 0">1</p> + <p>2</p> + <p>3</p> + </div> + <div class="columns"> + <p style="margin:20px 0 10px 0">1</p> + <p>2</p> + <p>3</p> + </div> + <div class="columns"> + <p style="margin:20px 0 10px 0"></p> + <p></p> + <p style="margin:20px 0 10px 0"></p> + </div> + + <div class="columns no-border"> + <p style="margin-top:10px">1</p> + <p>2</p> + <p style="margin-bottom:20px">3</p> + </div> + <div class="columns no-border"> + <p style="margin-bottom:10px">1</p> + <p>2</p> + <p>3</p> + </div> + <div class="columns no-border"> + <p style="margin:10px 0">1</p> + <p>2</p> + <p>3</p> + </div> + <div class="columns no-border"> + <p style="margin:20px 0 10px 0">1</p> + <p>2</p> + <p style="margin:20px 0 10px 0">3</p> + </div> + <div class="columns no-border"> + <p style="margin:20px 0 10px 0"></p> + <p></p> + <p style="margin:20px 0 10px 0"></p> + </div> + +</body></html> |