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/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.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/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.html')
-rw-r--r-- | layout/reftests/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.html b/layout/reftests/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.html new file mode 100644 index 000000000..943581a92 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/text-decor-3/ruby-text-decoration-01.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html lang="ja"> +<head> + <meta charset="UTF-8"> + <title>CSS Test: text-decoration on rubies</title> + <link rel="author" title="Xidorn Quan" href="http://www.upsuper.org/"> + <link rel="help" href="http://www.w3.org/TR/css-text-decor-3/#line-decoration"> + <link rel="match" href="ruby-text-decoration-01-ref.html"> +</head> +<style type="text/css"> + ruby { display: ruby; } + rb { display: ruby-base; white-space: nowrap; } + rt { display: ruby-text; white-space: nowrap; } + p { line-height: 3em; } + p { + text-decoration: underline; + } +</style> +<body> + <p> + <ruby><rb>慶</rb><rt>けい</rt + ><rb>應</rb><rt>おう</rt + ><rb>義</rb><rt>ぎ</rt + ><rb>塾</rb><rt>じゅく</rt + ><rb>大</rb><rt>だい</rt + ><rb>学</rb><rt>がく</rt></ruby> + </p> +</body> +</html> |