OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>CSS Test: vertical-lr upright orientation Table Column/Colgroup Ordering<
/title> | 2 <title>CSS Test: vertical-lr upright orientation Table Column/Colgroup 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-002-ref.html"> | 4 <link rel="match" href="table-progression-002-ref.html"> |
5 <meta name="assert" content="This test checks that vertical-lr tables, whether L
TR or RTL, order columns top-to-bottom when text-orientation is upright."> | 5 <meta name="assert" content="This test checks that vertical-lr tables, whether L
TR or RTL, order columns top-to-bottom when text-orientation is upright."> |
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 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#direction"> | 7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#direction"> |
8 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-orientatio
n"> | 8 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-orientatio
n"> |
9 | 9 |
10 <style> | 10 <style> |
11 .test { | 11 .test { |
12 -webkit-writing-mode: vertical-lr; | 12 -webkit-writing-mode: vertical-lr; |
13 -webkit-text-orientation: upright; | 13 text-orientation: upright; |
14 } | 14 } |
15 [dir=rtl] { | 15 [dir=rtl] { |
16 direction: rtl; | 16 direction: rtl; |
17 } | 17 } |
18 | 18 |
19 | 19 |
20 table { | 20 table { |
21 border-spacing: 0; | 21 border-spacing: 0; |
22 border: solid gray; | 22 border: solid gray; |
23 margin: 1em; | 23 margin: 1em; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 <tr><td><td><td><td><td> | 66 <tr><td><td><td><td><td> |
67 </table> | 67 </table> |
68 | 68 |
69 <table class="reference"> | 69 <table class="reference"> |
70 <tr><td class="navy"> | 70 <tr><td class="navy"> |
71 <tr><td class="navy"> | 71 <tr><td class="navy"> |
72 <tr><td class="blue"> | 72 <tr><td class="blue"> |
73 <tr><td class="aqua"> | 73 <tr><td class="aqua"> |
74 <tr><td class="aqua"> | 74 <tr><td class="aqua"> |
75 </table> | 75 </table> |
OLD | NEW |