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/1083848-1-inline-border.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/1083848-1-inline-border.html')
-rw-r--r-- | layout/reftests/writing-mode/1083848-1-inline-border.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1083848-1-inline-border.html b/layout/reftests/writing-mode/1083848-1-inline-border.html new file mode 100644 index 000000000..38795f139 --- /dev/null +++ b/layout/reftests/writing-mode/1083848-1-inline-border.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html lang="ja"> +<head> +<meta charset="utf-8"> +<style> +@font-face { + font-family: dejavu; + src: url(../fonts/DejaVuSansMono.woff); +} +.test { + margin:10px; + border:1px solid blue; + font-family: dejavu; + font-size: 16px; + letter-spacing: 0.1em; + word-break:break-all; + text-orientation:upright; + width:7em; + height:7em; +} + +.h { writing-mode:horizontal-tb; letter-spacing: 0.4em } +.v-lr { writing-mode:vertical-lr; } +.v-rl { writing-mode:vertical-rl; } + +b { + background-color: yellow; +} + +.bh { + border-left: 3px solid cyan; + border-right: 3px solid magenta; +} + +.bv { + border-top: 3px solid cyan; + border-bottom: 3px solid magenta; +} +</style> +</head> + +<body> + +<div class="test h">ABCDE<b class="bh">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +<div class="test v-lr">ABCDE<b class="bv">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +<div class="test v-rl">ABCDE<b class="bv">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +</body> +</html> |