Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(569)

Side by Side Diff: LayoutTests/imported/csswg-test/css-writing-modes-3/text-combine-upright/value-all-003.html

Issue 1170703002: Import more CSS Writing Modes Level 3 test suites (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TestExpetations Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>CSS Writing Modes: text-combine-upright: digits 2 + three digits</title> 5 <title>CSS Writing Modes: text-combine-upright: all</title>
6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYak ura"> 6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYak ura">
7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-up right"> 7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-up right">
8 <link rel="match" href="reference/vertical-ahem-1x3-ref.html"> 8 <link rel="match" href="reference/vertical-ahem-1x1-ref.html">
9 <link rel="mismatch" href="reference/horizontal-ahem-1x3-notref.html"> 9 <link rel="mismatch" href="reference/horizontal-ahem-1x1-notref.html">
10 <meta name="assert" content="'text-combine-upright: digits 2' does not combine d igits that are greater than two."> 10 <meta name="assert" content="'text-combine-upright: all' combines all characters inside the element which the declaration applied horizontally.">
11 <meta name="flags" content="ahem"> 11 <meta name="flags" content="ahem">
12 <style> 12 <style>
13 .test { 13 .test {
14 -webkit-writing-mode: vertical-rl; 14 -webkit-writing-mode: vertical-rl;
15 font-size: 5em; 15 font-size: 5em;
16 font-family: Ahem; 16 font-family: Ahem;
17 } 17 }
18 18
19 .tcy { 19 .tcy {
20 -webkit-text-combine: digits 2; 20 -webkit-text-combine: horizontal;
21 } 21 }
22 </style> 22 </style>
23 </head> 23 </head>
24 <body> 24 <body>
25 25
26 <p>Test passes if there are 2 <strong>identical</strong> black rectangles.</p> 26 <p>Test passes if there are 2 <strong>identical</strong> black rectangles.</p>
27 27
28 <div class="test"> 28 <div class="test">
29 <p><span class="tcy">123</span></p> 29 <p><span class="tcy">ABCDE</span></p>
30 <p>xxx</p> 30 <p>x</p>
31 </div> 31 </div>
32 32
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698