| OLD | NEW |
| 1 <!DOCTYPE html> <!-- coding:utf-8 --> | 1 <!DOCTYPE html> <!-- coding:utf-8 --> |
| 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 <!-- The match link is only required if this is a reftest --> | 11 <!-- The match link is only required if this is a reftest --> |
| 12 <link rel="match" href="css-flexbox-test1-ref.html"> | 12 <link rel="match" href="css-flexbox-test1-ref.html"> |
| 13 <meta name="flags" content=""> | 13 <meta name="flags" content=""> |
| 14 <meta name="assert" content="Test checks that when writing mode is vertical
and flex-flow: row, the flex container is vertical."> | 14 <meta name="assert" content="Test checks that when writing mode is vertical
and flex-flow: row, the flex container is vertical."> |
| 15 <style type="text/css"> | 15 <style type="text/css"> |
| 16 .container { | 16 .container { |
| 17 display: flex; | 17 display: flex; |
| 18 flex-flow: row; | 18 flex-flow: row; |
| 19 writing-mode: vertical-rl; | 19 writing-mode: vertical-rl; |
| 20 color: white; | 20 color: white; |
| 21 } | 21 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 <div class="error"></div> | 42 <div class="error"></div> |
| 43 <div class="container"> | 43 <div class="container"> |
| 44 <div class="item">123<br />123</div> | 44 <div class="item">123<br />123</div> |
| 45 <div class="item">456<br />456</div> | 45 <div class="item">456<br />456</div> |
| 46 <div class="item">789<br />789</div> | 46 <div class="item">789<br />789</div> |
| 47 </div> | 47 </div> |
| 48 | 48 |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |