tor-browser

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

block-step-size-invalid.html (794B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>CSS Rhythm: block-step-size invalid values</title>
      5 <link rel="author" title="Sammy Gill" href="sammy.gill@apple.com">
      6 <link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-size">
      7 <meta name="assert" content="Invalid values for block-step-size should not be parsed">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/parsing-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <script>
     14    test_invalid_value("block-step-size", "auto");
     15    test_invalid_value("block-step-size", "-1px");
     16    test_invalid_value("block-step-size", "min-content");
     17    test_invalid_value("block-step-size", "10%");
     18    test_invalid_value("block-step-size", "20");
     19 </script>
     20 </body>
     21 </html>