diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/writing-mode/1083848-2-inline-background.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/writing-mode/1083848-2-inline-background.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1083848-2-inline-background.html b/layout/reftests/writing-mode/1083848-2-inline-background.html new file mode 100644 index 0000000000..0591587b2b --- /dev/null +++ b/layout/reftests/writing-mode/1083848-2-inline-background.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">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +<div class="test v-lr">ABCDE<b class="bgtest">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +<div class="test v-rl">ABCDE<b class="bgtest">FGHIJKLMNOPQRST</b>UVWXYZ</div> + +</body> +</html> |