| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8" /> | 4 <meta charset="utf-8" /> |
| 5 <title>CSS Flexbox Test: flex direction: row, writing mode vertical</title> | 5 <title>CSS Flexbox Test: flex direction: row, writing mode vertical</title> |
| 6 <link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga
.org" /> | 6 <link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga
.org" /> |
| 7 <link rel="reviewer" title="Elika J Etemad" href="http://fantasai.inkedblade
.net/contact" /> | 7 <link rel="reviewer" title="Elika J Etemad" href="http://fantasai.inkedblade
.net/contact" /> |
| 8 <!-- You must have at least one spec link, but may have as many as are cove
red in the test. --> | 8 <!-- You must have at least one spec link, but may have as many as are cover
ed in the test. --> |
| 9 <!-- Be sure to make the main testing area first in the order --> | 9 <!-- Be sure to make the main testing area first in the order --> |
| 10 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow
"> | 10 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow
"> |
| 11 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#propdef-wri
ting-mode"> | 11 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#propdef-wri
ting-mode"> |
| 12 <!-- The match link is only required if this is a reftest --> | 12 <!-- The match link is only required if this is a reftest --> |
| 13 <link rel="match" href="css-flexbox-row-ref.html"> | 13 <link rel="match" href="css-flexbox-row-ref.html"> |
| 14 <meta name="flags" content=""> | 14 <meta name="flags" content=""> |
| 15 <meta name="assert" content="Test checks that when writing mode is vertical
and flex-flow: row-reverse, the flex container is vertical."> | 15 <meta name="assert" content="Test checks that when writing mode is vertical
and flex-flow: row-reverse, the flex container is vertical."> |
| 16 <style type="text/css"> | 16 <style type="text/css"> |
| 17 .container { | 17 .container { |
| 18 display: flex; | 18 display: flex; |
| 19 flex-flow: row-reverse; | 19 flex-flow: row-reverse; |
| 20 writing-mode: vertical-rl; | 20 writing-mode: vertical-rl; |
| 21 color: white; | 21 color: white; |
| 22 } | 22 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 42 <p>The test passes if you see a tall green box with pairs of the 1-9 and a-i l
isted top to bottom in two columns.</p> | 42 <p>The test passes if you see a tall green box with pairs of the 1-9 and a-i l
isted top to bottom in two columns.</p> |
| 43 | 43 |
| 44 <div class="error"></div> | 44 <div class="error"></div> |
| 45 <div class="container"> | 45 <div class="container"> |
| 46 <div class="item">789<br />ghi</div> | 46 <div class="item">789<br />ghi</div> |
| 47 <div class="item">456<br />def</div> | 47 <div class="item">456<br />def</div> |
| 48 <div class="item">123<br />abc</div> | 48 <div class="item">123<br />abc</div> |
| 49 </div> | 49 </div> |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| OLD | NEW |