| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 | 2 |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> | 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 | 4 |
| 5 <head> | 5 <head> |
| 6 | 6 |
| 7 <title>CSS Writing Modes Test: 'direction: rtl' - table columns order and vert
ical-rl</title> | 7 <title>CSS Writing Modes Test: 'direction: rtl' - table columns order and vert
ical-rl</title> |
| 8 | 8 |
| 9 <link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.
com" /> | 9 <link rel="author" title="Hajime Shiozawa" href="mailto:hajime.shiozawa@gmail.
com" /> |
| 10 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/Browse
rBugsSection/css21testsuite/" /> <!-- 2015-12-21 --> | 10 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/Browse
rBugsSection/css21testsuite/" /> <!-- 2015-12-21 --> |
| 11 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#direction" ti
tle="2.1 Specifying Directionality: the direction property" /> | 11 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#direction" ti
tle="2.1 Specifying Directionality: the direction property" /> |
| 12 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layo
ut" title="7.1 Principles of Layout in Vertical Writing Modes" /> | 12 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layo
ut" title="7.1 Principles of Layout in Vertical Writing Modes" /> |
| 13 <link rel="match" href="block-flow-direction-001-ref.xht" /> | 13 <link rel="match" href="block-flow-direction-001-ref.xht" /> |
| 14 | 14 |
| 15 <meta content="ahem" name="flags" /> | 15 <meta content="ahem" name="flags" /> |
| 16 <meta content="This test checks that colspanned cells in a table with 'directi
on' set to 'rtl' are handled according to a bottom-to-top column direction. This
test relies on right-to-left directionality applying to characters that are str
ongly sensitive to directionality. In this test, we use digits [0-9] and non-bre
aking spaces which are all strongly sensitive to bidi directionality." name="ass
ert" /> | 16 <meta content="This test checks that colspanned cells in a table with 'directi
on' set to 'rtl' are handled according to a bottom-to-top column direction. This
test relies on right-to-left directionality applying to characters that are str
ongly sensitive to directionality. In this test, we use digits [0-9] and non-bre
aking spaces which are all strongly sensitive to bidi directionality." name="ass
ert" /> |
| 17 | 17 |
| 18 <style type="text/css"><![CDATA[ | 18 <style type="text/css"><![CDATA[ |
| 19 body | 19 body |
| 20 { | 20 { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 44 { | 44 { |
| 45 padding-left: 0em; | 45 padding-left: 0em; |
| 46 } | 46 } |
| 47 ]]></style> | 47 ]]></style> |
| 48 </head> | 48 </head> |
| 49 | 49 |
| 50 <body> | 50 <body> |
| 51 | 51 |
| 52 <table> | 52 <table> |
| 53 | 53 |
| 54 <!-- The right-most "S" --> | 54 <!-- The right-most "S" --> |
| 55 <tr><td><!-- bottommost column -->111 2 3 4 </td><td>5&
nbsp; 6 7 88</td><td><!-- topmost column --> 9 0
1 22</td></tr> | 55 <tr><td><!-- bottommost column -->111 2 3 4 </td><td>5&nb
sp; 6 7 88</td><td><!-- topmost column --> 9 0 1 22
</td></tr> |
| 56 | 56 |
| 57 <!-- The left-most "S" --> | 57 <!-- The left-most "S" --> |
| 58 <tr><td colspan="2"><!-- bottommost column -->3333 4 5 6
7 8 99</td><td><!-- topmost column --> 1 2
3 44</td></tr> | 58 <tr><td colspan="2"><!-- bottommost column -->3333 4 5 6 &n
bsp;7 8 99</td><td><!-- topmost column --> 1 2 3 44
</td></tr> |
| 59 | 59 |
| 60 <!-- The "A" --> | 60 <!-- The "A" --> |
| 61 <tr><td><!-- bottommost column -->555 666</td><td
colspan="2"><!-- topmost column -->7777 8 9 0 1 2222</td></tr> | 61 <tr><td><!-- bottommost column -->555 666</td><td c
olspan="2"><!-- topmost column -->7777 8 9 0 1 2222</td></tr> |
| 62 | 62 |
| 63 <!-- The "P" --> | 63 <!-- The "P" --> |
| 64 <tr><td class="left-most-cell"><!-- bottommost column -->
333</td><td class="left-most-cell">44 5&n
bsp; 6 77</td><td class="left-most-cell"><!-- topmost column -->88  
;9 0 11</td></tr> | 64 <tr><td class="left-most-cell"><!-- bottommost column --> &
nbsp; 333</td><td class="left-most-cell">44 5&nbs
p; 6 77</td><td class="left-most-cell"><!-- topmost column -->88 9 &
nbsp;0 11</td></tr> |
| 65 | 65 |
| 66 </table> | 66 </table> |
| 67 | 67 |
| 68 </body> | 68 </body> |
| 69 </html> | 69 </html> |
| OLD | NEW |