tor-browser

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

block-step-align-computed.html (770B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>CSS Rhythm: block-step-align computed values</title>
      5 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
      6 <link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-align">
      7 <meta name="assert" content="Checking computed values for block-step-align">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/computed-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <div id="target"></div>
     14 <script>
     15    test_computed_value("block-step-align", "auto");
     16    test_computed_value("block-step-align", "center");
     17    test_computed_value("block-step-align", "start");
     18    test_computed_value("block-step-align", "end");
     19 </script>
     20 </body>
     21 </html>