diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/css-ruby/ruby-intercharacter-1-ref.htm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/css-ruby/ruby-intercharacter-1-ref.htm b/layout/reftests/css-ruby/ruby-intercharacter-1-ref.htm new file mode 100644 index 0000000000..6327ad90f7 --- /dev/null +++ b/layout/reftests/css-ruby/ruby-intercharacter-1-ref.htm @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<!-- +Reftest 1 for Bug 1395777 (reference file) +--> +<html lang="zh-TW"> +<head> +<meta charset="UTF-8"> +<style> +body { + font-size: 30px; + line-height: 1; +} +.rbc { + height: 30px; + display: inline-block; + vertical-align: top; +} +.rtc { + height: 30px; + display: inline-block; + writing-mode: vertical-rl; + text-orientation: upright; + vertical-align: top; + text-align: center; + font-size: 30%; +} +</style> +</head> +<body> + <div> + <span class="rbc">BASE</span><span class="rtc">RT</span> + </div> +</body> +</html> |