summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1083848-2-inline-background-ref.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/writing-mode/1083848-2-inline-background-ref.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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-2-inline-background-ref.html')
-rw-r--r--layout/reftests/writing-mode/1083848-2-inline-background-ref.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1083848-2-inline-background-ref.html b/layout/reftests/writing-mode/1083848-2-inline-background-ref.html
new file mode 100644
index 000000000..b7d18e7fb
--- /dev/null
+++ b/layout/reftests/writing-mode/1083848-2-inline-background-ref.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="ja">
+<head>
+<meta charset="utf-8">
+<style>
+@font-face {
+ font-family: mplus;
+ src: url(../fonts/mplus/mplus-1p-regular.ttf);
+}
+@font-face {
+ font-family: dejavu;
+ src: url(../fonts/DejaVuSansMono.woff);
+}
+.test {
+ margin:10px;
+ border:1px solid blue;
+ font-size: 16px;
+ word-break:break-all;
+ text-orientation:upright;
+ width:7.9em;
+ height:7.9em;
+}
+
+.h { writing-mode:horizontal-tb; font-family: mplus; text-transform:full-width; }
+.v-lr { writing-mode:vertical-lr; font-family: dejavu; }
+.v-rl { writing-mode:vertical-rl; font-family: dejavu; }
+
+.bgtest {
+ background: url(blue-32x32.png) no-repeat;
+}
+</style>
+</head>
+
+<body>
+
+<div class="test h">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
+
+<div class="test v-lr">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
+
+<div class="test v-rl">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
+
+</body>
+</html>