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 /testing/web-platform/tests/css/css-ruby/ruby-001.xht | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-ruby/ruby-001.xht')
-rw-r--r-- | testing/web-platform/tests/css/css-ruby/ruby-001.xht | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-ruby/ruby-001.xht b/testing/web-platform/tests/css/css-ruby/ruby-001.xht new file mode 100644 index 0000000000..80f49f0dbc --- /dev/null +++ b/testing/web-platform/tests/css/css-ruby/ruby-001.xht @@ -0,0 +1,60 @@ +<!DOCTYPE html> +<html lang="en" xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Ruby: Ping Test</title> + <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> + <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/ruby/001.html"/> + <link rel="help" href="http://www.w3.org/TR/css3-ruby/"/> + <style type="text/css"> + p { color: navy; } + .a ruby { display: ruby-base; display: inline; display: ruby-base; } + .a rbc { display: ruby-base-container; display: inline; display: ruby-base-container; } + .a rb { display: ruby-base; display: inline; display: ruby-base; } + .a rtc.before { display: ruby-text-container; display: inline; display: ruby-text-container; ruby-position: before; } + .a rtc.after { display: ruby-text-container; display: inline; display: ruby-text-container; ruby-position: after; } + .a rt { display: ruby-text; display: inline; display: ruby-text; ruby-span: 3; } + .b ruby { display: inline; } + .b rbc { display: inline; } + .b rb { display: inline; } + .b rtc { display: inline; } + .b rt { display: inline; } + </style> + </head> + <body> + <p>There should be exactly four lines of text below.</p> + <p> + <ruby class="a"> + <rbc> + <rb> 2. This is </rb> + <rb> the second </rb> + <rb> line. </rb> + </rbc> + <rtc class="before"> + <rt> 1. This is </rt> + <rt> the first </rt> + <rt> line. </rt> + </rtc> + <rtc class="after"> + <rt> 3. This is the third line. </rt> + </rtc> + </ruby> + </p> + <p> + <ruby class="b"> + <rbc> + <rb> 4. This </rb> + <rb> is </rb> + <rb> the </rb> + </rbc> + <rtc class="before"> + <rt> fourth </rt> + <rt> and </rt> + <rt> final </rt> + </rtc> + <rtc class="after"> + <rt> line. </rt> + </rtc> + </ruby> + </p> + </body> +</html> |