tor-browser

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

text-group-align-invalid.html (1208B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Text Module Test: parsing text-group-align with invalid values</title>
      6 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
      7 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-group-align-property">
      8 <meta name="assert" content="text-group-align supports only the grammar 'none | start | end | left | right | center'.">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/parsing-testcommon.js"></script>
     12 </head>
     13 <body>
     14 <script>
     15 test_invalid_value("text-group-align", "auto");
     16 test_invalid_value("text-group-align", "match-parent");
     17 test_invalid_value("text-group-align", "justify");
     18 test_invalid_value("text-group-align", "wrap");
     19 test_invalid_value("text-group-align", "left right");
     20 test_invalid_value("text-group-align", "center start");
     21 test_invalid_value("text-group-align", "end start");
     22 test_invalid_value("text-group-align", "none center");
     23 test_invalid_value("text-group-align", "start center");
     24 test_invalid_value("text-group-align", "right center");
     25 test_invalid_value("text-group-align", "5px");
     26 </script>
     27 </body>
     28 </html>