tor-browser

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

text-emphasis-style-computed-vertical-lr.html (1064B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-text-decor/#propdef-text-emphasis-style">
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script src="/css/support/computed-testcommon.js"></script>
      6 <style>
      7    #target {
      8        writing-mode: vertical-lr;
      9    }
     10 </style>
     11 <div id="target" ></div>
     12 <script>
     13 // Computed value: the keyword none, a pair of keywords representing the shape
     14 // and fill, or a string
     15 test_computed_value('text-emphasis-style', 'none');
     16 test_computed_value('text-emphasis-style', 'dot', 'dot');
     17 test_computed_value('text-emphasis-style', 'filled circle', 'circle');
     18 test_computed_value('text-emphasis-style', 'filled', 'sesame');
     19 test_computed_value('text-emphasis-style', 'open', 'open sesame');
     20 test_computed_value('text-emphasis-style', 'double-circle', 'double-circle');
     21 test_computed_value('text-emphasis-style', 'triangle', 'triangle');
     22 test_computed_value('text-emphasis-style', 'open sesame');
     23 test_computed_value('text-emphasis-style', '"*"');
     24 </script>