tor-browser

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

text-box-trim-computed.html (602B)


      1 <!DOCTYPE html>
      2 <title>text-box getComputedStyle() returns correctly resolved values</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#propdef-text-box-trim">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="/css/support/computed-testcommon.js"></script>
      7 <body>
      8 <div id="target"></div>
      9 <script>
     10 test_computed_value('text-box-trim', 'none');
     11 test_computed_value('text-box-trim', 'trim-start');
     12 test_computed_value('text-box-trim', 'trim-end');
     13 test_computed_value('text-box-trim', 'trim-both');
     14 </script>
     15 </body>