| Index: LayoutTests/imported/csswg-test/css-writing-modes-3/text-combine-upright-decorations-001-expected.html
|
| diff --git a/LayoutTests/imported/csswg-test/css-writing-modes-3/text-combine-upright-decorations-001-expected.html b/LayoutTests/imported/csswg-test/css-writing-modes-3/text-combine-upright-decorations-001-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..da907a61384f0930da71f2e4ec589b9250862409
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/csswg-test/css-writing-modes-3/text-combine-upright-decorations-001-expected.html
|
| @@ -0,0 +1,61 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Writing Modes Test: </title>
|
| +<link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine-layout" title="9.1.2. Layout Rules">
|
| +<meta name="assert" content="The resulting composition is treated as a signel glyph for decorations">
|
| +<meta name="flags" content="ahem">
|
| +<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
|
| +<style>
|
| +#container {
|
| + font: 50px/1 Ahem;
|
| +}
|
| +.vlr {
|
| + -webkit-writing-mode:vertical-lr;
|
| +}
|
| +.vrl {
|
| + -webkit-writing-mode:vertical-rl;
|
| +}
|
| +.test, .ref {
|
| + border:solid thin;
|
| + margin:.2em;
|
| +}
|
| +p {
|
| + margin:0 .5em;
|
| +}
|
| +.underline {
|
| + text-decoration:underline;
|
| +}
|
| +.overline {
|
| + text-decoration:overline;
|
| +}
|
| +.emphasis {
|
| + -webkit-text-emphasis:filled;
|
| +}
|
| +</style>
|
| +<p>This test asserts the resulting composition is treated as a signel glyph for decorations.
|
| +<p>Test passes if the following two boxes in each row are identical.
|
| +<div id=container>
|
| + <div class=vlr>
|
| + <div class=test>
|
| + <p class=underline>X X
|
| + <p class=overline>X X
|
| + <p class=emphasis>XXX
|
| + </div>
|
| + <div class=ref>
|
| + <p class=underline>X X
|
| + <p class=overline>X X
|
| + <p class=emphasis>XXX
|
| + </div>
|
| + </div>
|
| + <div class=vrl>
|
| + <div class=test>
|
| + <p class=underline>X X
|
| + <p class=overline>X X
|
| + <p class=emphasis>XXX
|
| + </div>
|
| + <div class=ref>
|
| + <p class=underline>X X
|
| + <p class=overline>X X
|
| + <p class=emphasis>XXX
|
| + </div>
|
| + </div>
|
| +</div>
|
|
|