tor-browser

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

text-wrap-style-valid.html (952B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Text Module Test: parsing text-wrap-style with valid 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-wrap-style">
      8 <meta name="assert" content="text-wrap-style supports the full grammar.">
      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_valid_value("text-wrap-style", "auto");
     16 test_valid_value("text-wrap-style", "balance");
     17 test_valid_value("text-wrap-style", "stable");
     18 
     19 test_valid_value("text-wrap-style", "initial");
     20 test_valid_value("text-wrap-style", "inherit");
     21 test_valid_value("text-wrap-style", "unset");
     22 test_valid_value("text-wrap-style", "revert");
     23 test_valid_value("text-wrap-style", "revert-layer");
     24 </script>
     25 </body>
     26 </html>