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/writing-mode/1174450-intrinsic-sizing-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/writing-mode/1174450-intrinsic-sizing-ref.html')
-rw-r--r-- | layout/reftests/writing-mode/1174450-intrinsic-sizing-ref.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1174450-intrinsic-sizing-ref.html b/layout/reftests/writing-mode/1174450-intrinsic-sizing-ref.html new file mode 100644 index 000000000..629c0a917 --- /dev/null +++ b/layout/reftests/writing-mode/1174450-intrinsic-sizing-ref.html @@ -0,0 +1,70 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html><head> + <meta charset="utf-8"> + <title>Testcase for bug 1174450</title> + <style type="text/css"> +body,html { color:black; background:white; font-size:12px; line-height:16px; padding:0; margin:0; } + +div.v, div.h { + display: block; + position: relative; + border: 1px dashed silver; + width:92px; + height:60px; +} +div.h { + width:124px; + height:98px; +} +.h span { + margin: 7px 13px 62px 25px; + padding: 1px 3px 12px 37px; +} +.v span { + margin: 7px 13px 30px 12px; + padding: 1px 3px 6px 18px; +} + +span { + display: block; + position: absolute; + width: 30px; + height: 10px; + background: lime; + border-width: 5px 9px 1px 7px; + border-style: solid; +} + +.a { position:absolute; } +.t2 {top:100px;} +.t3 {top:200px;} +.t4 {top:300px;} + + </style> +</head> +<body> + + +<div class="a t1"> +<pre>vertical container, horizontal child</pre> +<div class="v"><span class="h"></span></div> +</div> +<div class="a t2"> +<pre>vertical container, vertical child</pre> +<div class="v"><span class="v"></span></div> +</div> +<div class="a t3"> +<pre>horizontal container, horizontal child</pre> +<div class="h"><span class="h"></span></div> +</div> +<div class="a t4"> +<pre>horizontal container, vertical child</pre> +<div class="h"><span class="v"></span></div> +</div> + +</body> +</html> |