tor-browser

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

text-underline-offset-initial.html (569B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <link rel="help" title="2.4 Text Underline Offset: the 'text-underline-offset' property"
      8      href="https://drafts.csswg.org/css-text-decor-4/#underline-offset" />
      9 </head>
     10 <body>
     11 <script>
     12 test(function() {
     13   assert_equals(getComputedStyle(document.body)["text-underline-offset"], "auto", "Must be set to value auto as initial value.");
     14 }, "Initial value of text-underline-offset");
     15 </script>
     16 </body>
     17 </html>