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

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

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

Powered by Google App Engine
This is Rietveld 408576698