tor-browser

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

text-decoration-thickness-initial.html (609B)


      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 Decoration Width: the 'text-decoration-thickness' property"
      8      href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-width-property" />
      9 </head>
     10 <body>
     11 <script>
     12 test(function() {
     13  assert_equals(getComputedStyle(document.body)["text-decoration-thickness"], "auto", "Must be set to value auto as initial value.");
     14 }, "Initial value of text-decoration-thickness should be auto");
     15 </script>
     16 </body>
     17 </html>