flexbox-resizeviewport-2-helper.html (729B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <!-- Helper-file for reftest flexbox-resizeviewport-2.xhtml 6 I'm intentionally using quirks-mode (no doctype), so that 7 a 100% width (block-size) will work. --> 8 <html> 9 <head> 10 <style> 11 html { writing-mode: vertical-rl; } 12 div.flexbox { 13 display: flex; 14 width: 100%; 15 border: 2px dashed black; 16 } 17 div.a { 18 flex: 1; 19 background: pink; 20 } 21 div.b { 22 flex: 1; 23 background: teal; 24 } 25 </style> 26 </head> 27 <body> 28 <div class="flexbox"> 29 <div class="a"></div><div class="b"></div> 30 </div> 31 </body> 32 </html>