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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/table-progression-001-vrl.html

Issue 1372043002: update-w3c-deps import using blink 0131ca248edfe6c594fa8a6e5780f55c0f4d01eb: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaseline Created 5 years, 2 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 <title>CSS Test: vertical-rl Table Row/Rowgroup/Cell Ordering</title>
3 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/ contact">
4 <link rel="match" href="table-progression-001-ref.html">
5 <meta name="assert" content="This test checks that vertical-rl tables order rows /rowgroups right to left and cells top-to-bottom (LTR) or bottom-to-top (RTL) pe r 'direction'.">
6 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#writing-mode">
7
8 <style>
9 .test {
10 -webkit-writing-mode: vertical-rl;
11 }
12
13 table {
14 border-spacing: 0;
15 margin: 1em;
16 }
17 td {
18 width: 1em;
19 height: 1em;
20 border: solid gray;
21 }
22
23 .a { background: navy}
24 .b { background: blue }
25 .c { background: aqua }
26 .d { background: teal }
27 .e { background: purple }
28 .f { background: fuchsia }
29 .g { background: yellow }
30 .h { background: orange }
31 </style>
32
33 <p>Test passes if the following three tables look identical.
34
35 <table class="test">
36 <thead>
37 <tr>
38 <td class="a">
39 <td class="b">
40 <td colspan=2>
41 <tfoot>
42 <tr>
43 <td colspan=2>
44 <td class="c">
45 <td class="d">
46 <tbody>
47 <tr>
48 <td rowspan=3>
49 <td colspan=2>
50 <td class="e">
51 <tr>
52 <td class="f">
53 <td rowspan=2 colspan=2>
54 <tr>
55 <td class="g">
56 <tbody>
57 <tr>
58 <td class="h">
59 <td colspan=3>
60 </table>
61
62 <table dir=rtl class="test">
63 <thead>
64 <tr>
65 <td colspan=2>
66 <td class="b">
67 <td class="a">
68 <tfoot>
69 <tr>
70 <td class="d">
71 <td class="c">
72 <td colspan=2>
73 <tbody>
74 <tr>
75 <td class="e">
76 <td colspan=2>
77 <td rowspan=3>
78 <tr>
79 <td rowspan=2 colspan=2>
80 <td class="f">
81 <tr>
82 <td class="g">
83 <tbody>
84 <tr>
85 <td colspan=3>
86 <td class="h">
87 </table>
88
89 <table class="reference">
90 <tr>
91 <td rowspan=2>
92 <td class="h">
93 <td colspan="3">
94 <td class="a">
95 <tr>
96 <td rowspan="3">
97 <td class="g">
98 <td class="f">
99 <td rowspan="2">
100 <td class="b">
101 <tr>
102 <td class="c">
103 <td rowspan=2 colspan=2>
104 <td rowspan=2>
105 <tr>
106 <td class="d">
107 <td class="e">
108 </table>
109
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698