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/css-break/box-decoration-break-block-border-padding-ref.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/css-break/box-decoration-break-block-border-padding-ref.html')
-rw-r--r-- | layout/reftests/css-break/box-decoration-break-block-border-padding-ref.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/layout/reftests/css-break/box-decoration-break-block-border-padding-ref.html b/layout/reftests/css-break/box-decoration-break-block-border-padding-ref.html new file mode 100644 index 000000000..f046252aa --- /dev/null +++ b/layout/reftests/css-break/box-decoration-break-block-border-padding-ref.html @@ -0,0 +1,50 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html> +<head> + <title>Testcase for box-decoration-break:clone, block border+padding</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=988653"> + <meta charset="utf-8"> + <style type="text/css"> + html,body { + color:black; background-color:white; font-size:16px; padding:10px; margin:0; + } + + .inner { + border: 5px dashed blue; + height: 33px; + width: 40px; + background: lime; + background-clip: content-box; + margin-bottom: 12px; + } + + .columns { + -moz-columns: 3; + width: 250px; + height: 50px; + background: grey; + margin-top: 2px; + } + + .unbalanced { + -moz-column-fill: auto; + } + + .inner.p { height:31px; padding:1px 3px 5px 7px; } + .unbalanced .inner { height:40px; margin-bottom: 0px;} + .unbalanced .inner.p { height:34px; } + </style> +</head> +<body> + +<div class="columns"><div class="inner"></div><div class="inner"></div><div class="inner"></div></div> +<div class="columns unbalanced"><div class="inner"></div><div class="inner"></div><div class="inner" style="height:19px"></div></div> +<div class="columns"><div class="p inner"></div><div class="p inner"></div><div class="p inner"></div></div> +<div class="columns unbalanced"><div class="p inner"></div><div class="p inner"></div><div class="p inner" style="height:25px"></div></div> + +</body> +</html> |