tor-browser

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

text-emphasis-position-valid.html (816B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Emphasis Test: Parsing text-emphasis-position with valid values</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-text-decor/#propdef-text-emphasis-position">
      5 <meta name="assert" content="text-emphasis-position supports the full grammar 'auto | ([over | under] || [left | right]?)'.">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script src="/css/support/parsing-testcommon.js"></script>
      9 <script>
     10 test_valid_value("text-emphasis-position", "auto");
     11 test_valid_value("text-emphasis-position", "over left");
     12 test_valid_value("text-emphasis-position", "right under", "under");
     13 test_valid_value("text-emphasis-position", "over");
     14 test_valid_value("text-emphasis-position", "under");
     15 </script>