| OLD | NEW |
| 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'. This test also checks that 'writing-mode' and 'direction' do not
apply to table rows and row groups."> |
| 6 <meta name="assert" content="This test checks that 'writing-mode' and 'direction
' do not apply to table rows and row groups."> | |
| 7 <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"> |
| 8 <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"> |
| 9 | 8 |
| 10 <style> | 9 <style> |
| 11 .test { | 10 .test { |
| 12 writing-mode: vertical-lr; | 11 writing-mode: vertical-lr; |
| 13 } | 12 } |
| 14 [dir=rtl] { | 13 [dir=rtl] { |
| 15 direction: rtl; | 14 direction: rtl; |
| 16 } | 15 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 <td rowspan=2> | 124 <td rowspan=2> |
| 126 <td class="blue"> | 125 <td class="blue"> |
| 127 <tr> | 126 <tr> |
| 128 <td class="aqua"> | 127 <td class="aqua"> |
| 129 <td rowspan=2 colspan=2> | 128 <td rowspan=2 colspan=2> |
| 130 <td rowspan=2> | 129 <td rowspan=2> |
| 131 <tr> | 130 <tr> |
| 132 <td class="teal"> | 131 <td class="teal"> |
| 133 <td class="purp"> | 132 <td class="purp"> |
| 134 </table> | 133 </table> |
| OLD | NEW |