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

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

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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS Writing Modes Test: text-combine-upright :all</title>
5 <link rel="author" title="Shinsuke Matsuki" href="mailto:shinsuke.matsuki@ac cess-company.com">
6 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combin e-upright">
7 <link rel="match" href="reference/value-all-and-inherit-001-ref.htm">
8 <meta name="assert" content="Two white triangles does not pointing to the ri ght. Pointing up.">
9 <meta charset="utf-8">
10 <style type="text/css">
11 @font-face {
12 font-family: 'tcu-font';
13 src: url('support/tcu-font.woff');
14 }
15
16 .tcu-all {
17 font-family: 'tcu-font';
18 -webkit-writing-mode: vertical-rl;
19 -webkit-text-combine: horizontal;
20 }
21 </style>
22 </head>
23 <body>
24 <p>Test passes if the two white triangles are pointing to the right.</p>
25 <div class="tcu-all">
26 <table>
27 <tr>
28 <td>
29 <div style="display: inline-table">
30 <div style="display: inline-block">
31 <p>2<span>2</span></p>
32 </div>
33 </div>
34 </td>
35 </tr>
36 </table>
37 </div>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698