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-with-bidi.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-with-bidi.html')
-rw-r--r-- | layout/reftests/css-break/box-decoration-break-with-bidi.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/layout/reftests/css-break/box-decoration-break-with-bidi.html b/layout/reftests/css-break/box-decoration-break-with-bidi.html new file mode 100644 index 000000000..1dec2105f --- /dev/null +++ b/layout/reftests/css-break/box-decoration-break-with-bidi.html @@ -0,0 +1,64 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html><head> + <meta charset="utf-8"> + <title>Testing box-decoration-break with bidi resolution</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1210877"> + <link rel="help" href="http://dev.w3.org/csswg/css-break/#break-decoration"> + <link rel="match" href="box-decoration-break-with-bidi-ref.html"> + <style type="text/css"> + +.test { + box-decoration-break: clone; + background: black; +} +.p { + padding:11px 3px 5px 7px; +} +.b { + border: 1px solid blue; + border-width:3px 5px 7px 11px; +} +.m { + margin:5px 7px 11px 3px; +} +.direction { + direction: rtl; +} + +x {display:inline-block; width:20px; height:10px; background:lime; } +y {display:inline-block; width:30px; height:1px; background:lime; } +d {display:inline-block; border:10px solid red } + </style> +</head> +<body> + +<div style="float:left; width: 100px;"> +<span class="test p"><x></x><br><y></y></span><br><br><br> +<span class="test b"><x></x><br><y></y></span><br><br><br> +<span class="test p b"><x></x><br><y></y></span><br><br><br> +<span class="test m"><x></x><br><y></y></span><br><br><br> +<span class="test p m"><x></x><br><y></y></span><br><br><br> +<span class="test b m"><x></x><br><y></y></span><br><br><br> +<span class="test p b m"><x></x><br><y></y></span><br><br><br> + +<div class="direction"></div> <!-- to trigger bidi resolution --> + +</div><div style="float:left; width: 100px; text-align:right"> + +<span class="test p"><y></y><br><x></x></span><br><br><br> +<span class="test b"><y></y><br><x></x></span><br><br><br> +<span class="test p b"><y></y><br><x></x></span><br><br><br> +<span class="test m"><y></y><br><x></x></span><br><br><br> +<span class="test p m"><y></y><br><x></x></span><br><br><br> +<span class="test b m"><y></y><br><x></x></span><br><br><br> +<span class="test p b m"><y></y><br><x></x></span><br><br><br> + +<div class="direction"></div> <!-- to trigger bidi resolution --> +</div> + +</body> +</html> |