tor-browser

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

text-wrap-invalid.html (968B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Text Module Test: parsing text-wrap 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-wrap">
      8 <meta name="assert" content="text-wrap supports only the grammar '<text-wrap-mode> || <text-wrap-style>'.">
      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-wrap", "normal");
     16 test_invalid_value("text-wrap", "none");
     17 test_invalid_value("text-wrap", "wrap nowrap");
     18 test_invalid_value("text-wrap", "pretty balance");
     19 test_invalid_value("text-wrap", "balance stable");
     20 test_invalid_value("text-wrap", "stable pretty");
     21 test_invalid_value("text-wrap", "delicious wrap");
     22 test_invalid_value("text-wrap", "5px");
     23 </script>
     24 </body>
     25 </html>