tor-browser

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

justify-items-invalid.html (1376B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Box Alignment Level 3: parsing justify-items with invalid values</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-items">
      7 <meta name="assert" content="justify-items supports only the grammar 'normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]'.">
      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("justify-items", "auto");
     15 test_invalid_value("justify-items", "baseline last");
     16 test_invalid_value("justify-items", "center baseline");
     17 test_invalid_value("justify-items", "first");
     18 test_invalid_value("justify-items", "flex-start flex-end");
     19 test_invalid_value("justify-items", "last");
     20 test_invalid_value("justify-items", "normal baseline");
     21 test_invalid_value("justify-items", "safe");
     22 test_invalid_value("justify-items", "self-end unsafe");
     23 test_invalid_value("justify-items", "space-around");
     24 test_invalid_value("justify-items", "space-between");
     25 test_invalid_value("justify-items", "space-evenly");
     26 test_invalid_value("justify-items", "start safe");
     27 test_invalid_value("justify-items", "unsafe");
     28 </script>
     29 </body>
     30 </html>