tor-browser

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

text-emphasis-style-computed.html (991B)


      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 <div id="target"></div>
      7 <script>
      8 // Computed value: the keyword none, a pair of keywords representing the shape
      9 // and fill, or a string
     10 test_computed_value('text-emphasis-style', 'none');
     11 test_computed_value('text-emphasis-style', 'dot', 'dot');
     12 test_computed_value('text-emphasis-style', 'filled circle', 'circle');
     13 test_computed_value('text-emphasis-style', 'filled', 'circle');
     14 test_computed_value('text-emphasis-style', 'open', 'open circle');
     15 test_computed_value('text-emphasis-style', 'double-circle', 'double-circle');
     16 test_computed_value('text-emphasis-style', 'triangle', 'triangle');
     17 test_computed_value('text-emphasis-style', 'open sesame');
     18 test_computed_value('text-emphasis-style', '"*"');
     19 </script>