diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/selection/writing-mode-ref.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/selection/writing-mode-ref.html')
-rw-r--r-- | layout/reftests/selection/writing-mode-ref.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/layout/reftests/selection/writing-mode-ref.html b/layout/reftests/selection/writing-mode-ref.html new file mode 100644 index 0000000000..3619c1811f --- /dev/null +++ b/layout/reftests/selection/writing-mode-ref.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>writing-mode-ref</title> + <style> + p { + display: inline-block; + margin: 10px; + } + .line-through { + text-decoration: line-through wavy rgba(0, 0, 0, 0.3); + } + .wm-vertical-lr { + writing-mode: vertical-lr; + } + .wm-vertical-rl { + writing-mode: vertical-rl; + } + .wm-sideways-lr { + writing-mode: sideways-lr; + } + .wm-sideways-rl { + writing-mode: sideways-rl; + } + </style> + </head> + <body> + <p lang="zh" dir="ltr" class="wm-vertical-lr line-through">你好世界!Hello World!</p> + <p lang="zh" dir="ltr" class="wm-vertical-rl line-through">你好世界!Hello World!</p> + <p lang="zh" dir="ltr" class="wm-sideways-lr line-through">你好世界!Hello World!</p> + <p lang="zh" dir="ltr" class="wm-sideways-rl line-through">你好世界!Hello World!</p> + <br/> + <p lang="zh" dir="rtl" class="wm-vertical-lr line-through">你好世界!Hello World!</p> + <p lang="zh" dir="rtl" class="wm-vertical-rl line-through">你好世界!Hello World!</p> + <p lang="zh" dir="rtl" class="wm-sideways-lr line-through">你好世界!Hello World!</p> + <p lang="zh" dir="rtl" class="wm-sideways-rl line-through">你好世界!Hello World!</p> + </body> +</html> |