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

Side by Side Diff: LayoutTests/imported/csswg-test/css-writing-modes-3/border-conflict-element-vrl-008.xht

Issue 1319333002: update-w3c-deps import using blink 6a21d1a089a3a2fd9e80ada1edd4f48db5408e0c: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 3 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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
2
3 <html xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6
7 <title>CSS Writing Modes Test: Border conflict resolution - adjacent cells wit h same border styles in a 'vertical-rl' table with 'direction: ltr' (complex)</t itle>
8
9 <!--
10 Original (and horizontal-tb) test is
11 http://test.csswg.org/suites/css2.1/nightly-unstable/html4/border-conflict-ele ment-001c.htm
12 -->
13
14 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB ugsSection/css21testsuite/" />
15 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#logical-direc tions" title="6.2 Flow-relative Directions" />
16 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict- resolution" title="17.6.2.1 Border conflict resolution" />
17 <link rel="match" href="../css21/reference/ref-filled-green-100px-square.xht" />
18
19 <meta content="" name="flags" />
20 <meta content="When two adjacent cells have the same 'border-width' value and the same 'border-style' value in a 'border-collapse: collapse' table, then the c olor of the border of the cell closest to line-left side wins (if the table's 'd irection' is 'ltr'; line-right side, if it is 'rtl') and the color of the border of the cell closest to block-start side wins." name="assert" />
21
22 <style type="text/css"><![CDATA[
23 table
24 {
25 border-collapse: collapse;
26 direction: ltr;
27 -webkit-writing-mode: vertical-rl;
28 }
29
30 td
31 {
32 border-style: solid none solid none;
33 border-width: 20px 0px 20px 0px;
34 padding: 0px;
35 width: 25px; /* height of each logical row */
36 }
37
38 td#one
39 {
40 border-color: green red green red;
41 }
42
43 td#two
44 {
45 border-color: red red green red;
46 }
47
48 td#three
49 {
50 border-color: red red green red;
51 }
52
53 td#four
54 {
55 border-color: red red green red;
56 }
57
58
59
60 td#five
61 {
62 border-color: green red green red;
63 }
64
65 td#six
66 {
67 border-color: red red green red;
68 }
69
70 td#seven
71 {
72 border-color: red red green red;
73 }
74
75 td#eight
76 {
77 border-color: red red green red;
78 }
79
80
81
82 td#nine
83 {
84 border-color: green red green red;
85 }
86
87 td#ten
88 {
89 border-color: red red green red;
90 }
91
92 td#eleven
93 {
94 border-color: red red green red;
95 }
96
97 td#twelve
98 {
99 border-color: red red green red;
100 }
101
102
103
104 td#thirteen
105 {
106 border-color: green red green red;
107 }
108
109 td#fourteen
110 {
111 border-color: red red green red;
112 }
113
114 td#fifteen
115 {
116 border-color: red red green red;
117 }
118
119 td#sixteen
120 {
121 border-color: red red green red;
122 }
123 ]]></style>
124
125 </head>
126
127 <body>
128
129 <p>Test passes if there is a filled green square and <strong>no red</strong>.< /p>
130
131 <table>
132
133 <tr>
134 <td id="one"></td> <td id="two"></td> <td id="three"></td> <td id="fou r"></td>
135 </tr>
136
137 <tr>
138 <td id="five"></td> <td id="six"></td> <td id="seven"></td> <td id="ei ght"></td>
139 </tr>
140
141 <tr>
142 <td id="nine"></td> <td id="ten"></td> <td id="eleven"></td> <td id="t welve"></td>
143 </tr>
144
145 <tr>
146 <td id="thirteen"></td> <td id="fourteen"></td> <td id="fifteen"></td> <td id="sixteen"></td>
147 </tr>
148
149 </table>
150
151 </body>
152 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698