mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1225018 part 3 - Add reftests for line height handling of text-emphasis. r=dholbert
This commit is contained in:
parent
9330cbaa62
commit
30a51036a9
@ -106,3 +106,20 @@ skip-if(/^Windows\x20NT\x205\.1/.test(http.oscpu)) == text-emphasis-style-proper
|
||||
== text-emphasis-position-property-006f.html text-emphasis-position-property-006-ref.html
|
||||
== text-emphasis-position-property-006g.html text-emphasis-position-property-006-ref.html
|
||||
# END tests from support/generate-text-emphasis-position-property-tests.py
|
||||
|
||||
# text-emphasis line height
|
||||
# START tests from support/generate-text-emphasis-line-height-tests.py
|
||||
== text-emphasis-line-height-001a.html text-emphasis-line-height-001-ref.html
|
||||
== text-emphasis-line-height-001b.html text-emphasis-line-height-001-ref.html
|
||||
== text-emphasis-line-height-002a.html text-emphasis-line-height-002-ref.html
|
||||
== text-emphasis-line-height-002b.html text-emphasis-line-height-002-ref.html
|
||||
== text-emphasis-line-height-003a.html text-emphasis-line-height-003-ref.html
|
||||
== text-emphasis-line-height-003b.html text-emphasis-line-height-003-ref.html
|
||||
== text-emphasis-line-height-003c.html text-emphasis-line-height-003-ref.html
|
||||
== text-emphasis-line-height-003d.html text-emphasis-line-height-003-ref.html
|
||||
== text-emphasis-line-height-004a.html text-emphasis-line-height-004-ref.html
|
||||
== text-emphasis-line-height-004b.html text-emphasis-line-height-004-ref.html
|
||||
== text-emphasis-line-height-004c.html text-emphasis-line-height-004-ref.html
|
||||
== text-emphasis-line-height-004d.html text-emphasis-line-height-004-ref.html
|
||||
# END tests from support/generate-text-emphasis-line-height-tests.py
|
||||
== text-emphasis-line-height-001z.html text-emphasis-line-height-001-ref.html
|
||||
|
@ -0,0 +1,82 @@
|
||||
#!/usr/bin/env python
|
||||
# - * - coding: UTF-8 - * -
|
||||
|
||||
"""
|
||||
This script generates tests text-emphasis-line-height-001 ~ 004 except
|
||||
001z. They test the line height expansion in different directions. This
|
||||
script outputs a list of all tests it generated in the format of Mozilla
|
||||
reftest.list to the stdout.
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
TEST_FILE = 'text-emphasis-line-height-{:03}{}.html'
|
||||
TEST_TEMPLATE = '''<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, {pos}, {wm}, {tag}</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-{index:03}-ref.html">
|
||||
<p>Pass if the emphasis marks are {dir} the black line:</p>
|
||||
{start}試験テスト{end}
|
||||
'''
|
||||
|
||||
REF_FILE = 'text-emphasis-line-height-{:03}-ref.html'
|
||||
REF_TEMPLATE='''<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: text-emphasis line height, {pos}</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<style> rt {{ font-variant-east-asian: inherit; }} </style>
|
||||
<p>Pass if the emphasis marks are {dir} the black line:</p>
|
||||
<div style="line-height: 1; border-{pos}: 1px solid black; writing-mode: {wm}; ruby-position: {posval}"><ruby>試<rt>●</rt>験<rt>●</rt>テ<rt>●</rt>ス<rt>●</rt>ト<rt>●</rt></ruby></div>
|
||||
'''
|
||||
|
||||
STYLE1 = 'line-height: 1; border-{pos}: 1px solid black; ' + \
|
||||
'writing-mode: {wm}; text-emphasis-position: {posval};'
|
||||
STYLE2 = 'text-emphasis: circle;'
|
||||
|
||||
TAGS = [
|
||||
# (tag, start, end)
|
||||
('div', '<div style="{style1}{style2}">', '</div>'),
|
||||
('span', '<div style="{style1}"><span style="{style2}">', '</span></div>'),
|
||||
]
|
||||
POSITIONS = [
|
||||
# pos, text-emphasis-position, ruby-position,
|
||||
# writing-modes, dir text
|
||||
('top', 'over right', 'over',
|
||||
['horizontal-tb'], 'below'),
|
||||
('bottom', 'under right', 'under',
|
||||
['horizontal-tb'], 'over'),
|
||||
('right', 'over right', 'over',
|
||||
['vertical-rl', 'vertical-lr'], 'to the left of'),
|
||||
('left', 'over left', 'under',
|
||||
['vertical-rl', 'vertical-lr'], 'to the right of'),
|
||||
]
|
||||
|
||||
import string
|
||||
|
||||
def write_file(filename, content):
|
||||
with open(filename, 'wb') as f:
|
||||
f.write(content.encode('UTF-8'))
|
||||
|
||||
print("# START tests from {}".format(__file__))
|
||||
idx = 0
|
||||
for (pos, emphasis_pos, ruby_pos, wms, dir) in POSITIONS:
|
||||
idx += 1
|
||||
ref_file = REF_FILE.format(idx)
|
||||
content = REF_TEMPLATE.format(pos=pos, dir=dir, wm=wms[0], posval=ruby_pos)
|
||||
write_file(ref_file, content)
|
||||
suffix = iter(string.ascii_lowercase)
|
||||
for wm in wms:
|
||||
style1 = STYLE1.format(pos=pos, wm=wm, posval=emphasis_pos)
|
||||
for (tag, start, end) in TAGS:
|
||||
test_file = TEST_FILE.format(idx, next(suffix))
|
||||
content = TEST_TEMPLATE.format(
|
||||
pos=pos, wm=wm, tag=tag, index=idx, dir=dir,
|
||||
start=start.format(style1=style1, style2=STYLE2), end=end)
|
||||
write_file(test_file, content)
|
||||
print("== {} {}".format(test_file, ref_file))
|
||||
print("# END tests from {}".format(__file__))
|
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: text-emphasis line height, top</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<style> rt { font-variant-east-asian: inherit; } </style>
|
||||
<p>Pass if the emphasis marks are below the black line:</p>
|
||||
<div style="line-height: 1; border-top: 1px solid black; writing-mode: horizontal-tb; ruby-position: over"><ruby>試<rt>●</rt>験<rt>●</rt>テ<rt>●</rt>ス<rt>●</rt>ト<rt>●</rt></ruby></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, top, horizontal-tb, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-001-ref.html">
|
||||
<p>Pass if the emphasis marks are below the black line:</p>
|
||||
<div style="line-height: 1; border-top: 1px solid black; writing-mode: horizontal-tb; text-emphasis-position: over right;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, top, horizontal-tb, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-001-ref.html">
|
||||
<p>Pass if the emphasis marks are below the black line:</p>
|
||||
<div style="line-height: 1; border-top: 1px solid black; writing-mode: horizontal-tb; text-emphasis-position: over right;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, top, textarea</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-001-ref.html">
|
||||
<style>
|
||||
textarea {
|
||||
font: inherit;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
border: 0 none; margin: 0; padding: 0;
|
||||
resize: none;
|
||||
}
|
||||
</style>
|
||||
<p>Pass if the emphasis marks are below the black line:</p>
|
||||
<textarea style="line-height: 1; border-top: 1px solid black; text-emphasis: circle;">試験テスト</textarea>
|
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: text-emphasis line height, bottom</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<style> rt { font-variant-east-asian: inherit; } </style>
|
||||
<p>Pass if the emphasis marks are over the black line:</p>
|
||||
<div style="line-height: 1; border-bottom: 1px solid black; writing-mode: horizontal-tb; ruby-position: under"><ruby>試<rt>●</rt>験<rt>●</rt>テ<rt>●</rt>ス<rt>●</rt>ト<rt>●</rt></ruby></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, bottom, horizontal-tb, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-002-ref.html">
|
||||
<p>Pass if the emphasis marks are over the black line:</p>
|
||||
<div style="line-height: 1; border-bottom: 1px solid black; writing-mode: horizontal-tb; text-emphasis-position: under right;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, bottom, horizontal-tb, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-002-ref.html">
|
||||
<p>Pass if the emphasis marks are over the black line:</p>
|
||||
<div style="line-height: 1; border-bottom: 1px solid black; writing-mode: horizontal-tb; text-emphasis-position: under right;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: text-emphasis line height, right</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<style> rt { font-variant-east-asian: inherit; } </style>
|
||||
<p>Pass if the emphasis marks are to the left of the black line:</p>
|
||||
<div style="line-height: 1; border-right: 1px solid black; writing-mode: vertical-rl; ruby-position: over"><ruby>試<rt>●</rt>験<rt>●</rt>テ<rt>●</rt>ス<rt>●</rt>ト<rt>●</rt></ruby></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, right, vertical-rl, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-003-ref.html">
|
||||
<p>Pass if the emphasis marks are to the left of the black line:</p>
|
||||
<div style="line-height: 1; border-right: 1px solid black; writing-mode: vertical-rl; text-emphasis-position: over right;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, right, vertical-rl, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-003-ref.html">
|
||||
<p>Pass if the emphasis marks are to the left of the black line:</p>
|
||||
<div style="line-height: 1; border-right: 1px solid black; writing-mode: vertical-rl; text-emphasis-position: over right;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, right, vertical-lr, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-003-ref.html">
|
||||
<p>Pass if the emphasis marks are to the left of the black line:</p>
|
||||
<div style="line-height: 1; border-right: 1px solid black; writing-mode: vertical-lr; text-emphasis-position: over right;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, right, vertical-lr, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-003-ref.html">
|
||||
<p>Pass if the emphasis marks are to the left of the black line:</p>
|
||||
<div style="line-height: 1; border-right: 1px solid black; writing-mode: vertical-lr; text-emphasis-position: over right;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: text-emphasis line height, left</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<style> rt { font-variant-east-asian: inherit; } </style>
|
||||
<p>Pass if the emphasis marks are to the right of the black line:</p>
|
||||
<div style="line-height: 1; border-left: 1px solid black; writing-mode: vertical-rl; ruby-position: under"><ruby>試<rt>●</rt>験<rt>●</rt>テ<rt>●</rt>ス<rt>●</rt>ト<rt>●</rt></ruby></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, left, vertical-rl, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-004-ref.html">
|
||||
<p>Pass if the emphasis marks are to the right of the black line:</p>
|
||||
<div style="line-height: 1; border-left: 1px solid black; writing-mode: vertical-rl; text-emphasis-position: over left;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, left, vertical-rl, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-004-ref.html">
|
||||
<p>Pass if the emphasis marks are to the right of the black line:</p>
|
||||
<div style="line-height: 1; border-left: 1px solid black; writing-mode: vertical-rl; text-emphasis-position: over left;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, left, vertical-lr, div</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-004-ref.html">
|
||||
<p>Pass if the emphasis marks are to the right of the black line:</p>
|
||||
<div style="line-height: 1; border-left: 1px solid black; writing-mode: vertical-lr; text-emphasis-position: over left;text-emphasis: circle;">試験テスト</div>
|
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: text-emphasis line height, left, vertical-lr, span</title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-position-property">
|
||||
<meta name="assert" content="text emphasis marks should expand the line height like ruby if necessary">
|
||||
<link rel="match" href="text-emphasis-position-property-004-ref.html">
|
||||
<p>Pass if the emphasis marks are to the right of the black line:</p>
|
||||
<div style="line-height: 1; border-left: 1px solid black; writing-mode: vertical-lr; text-emphasis-position: over left;"><span style="text-emphasis: circle;">試験テスト</span></div>
|
Loading…
Reference in New Issue
Block a user