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

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

Issue 1211973013: update-w3c-deps import using blink d42488bb63a5ac7fd6befd40a9b90fe85cebcc4a: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add flaky/timeout to TestExpectations Created 5 years, 5 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 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title> 2 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title>
3 <link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine -upright"> 3 <link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine -upright">
4 <link rel="match" href="reference/text-combine-upright-inherit-all-001.html"> 4 <link rel="match" href="reference/text-combine-upright-inherit-all-001.html">
5 <meta name="assert" content="This test checks text-combine-upright:all inherits" > 5 <meta name="assert" content="This test checks text-combine-upright:all inherits" >
6 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> 6 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
7 <style> 7 <style>
8 #container { 8 #container {
9 font-size:50px;
10 }
11 .vrl {
9 -webkit-writing-mode:vertical-rl; 12 -webkit-writing-mode:vertical-rl;
10 -webkit-writing-mode:vertical-rl;
11 font-size:50px;
12 } 13 }
13 .tcy { 14 .tcy {
14 -webkit-text-combine:horizontal; 15 -webkit-text-combine:horizontal;
15 -webkit-text-combine:horizontal;
16 } 16 }
17 </style> 17 </style>
18 <p>Test passes if the following two numbers are both <b>horizontal</b>. 18 <p>Test passes if all numbers are <b>horizontal</b>.
19 <div id=container> 19 <div id=container>
20 <div><span class=tcy>66</span></div> 20 <div>66</div>
21 <div><span class=tcy><span>66</span></span></div> 21 <div class=vrl><span class=tcy>66</span></div>
22 <div class=vrl><span class=tcy><span>66</span></span></div>
22 </div> 23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698