tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

flex-flow-shorthand.html (762B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Flexible Box Layout Module Level 1: flex-flow sets longhands</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-flex-flow">
      7 <meta name="assert" content="flex-flow supports the full grammar '<flex-direction> || <flex-wrap>'.">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/shorthand-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <script>
     14 test_shorthand_value('flex-flow', 'nowrap column', {
     15  'flex-direction': 'column',
     16  'flex-wrap': 'nowrap'
     17 });
     18 
     19 test_shorthand_value('flex-flow', 'wrap row-reverse', {
     20  'flex-direction': 'row-reverse',
     21  'flex-wrap': 'wrap'
     22 });
     23 </script>
     24 </body>
     25 </html>