tor-browser

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

border-block-style-computed.html (1302B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Logical Properties and Values: getComputedStyle().borderBlockStyle</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-border-block-style">
      7 <meta name="assert" content="border-block-style is specified keyword(s).">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/computed-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <div id="target"></div>
     14 <script>
     15 test_computed_value("border-block-start-style", "dotted");
     16 test_computed_value("border-block-start-style", "groove");
     17 test_computed_value("border-block-start-style", "inset");
     18 test_computed_value("border-block-start-style", "none");
     19 test_computed_value("border-block-start-style", "solid");
     20 test_computed_value("border-block-end-style", "dashed");
     21 test_computed_value("border-block-end-style", "double");
     22 test_computed_value("border-block-end-style", "hidden");
     23 test_computed_value("border-block-end-style", "outset");
     24 test_computed_value("border-block-end-style", "ridge");
     25 test_computed_value("border-block-style", "dotted");
     26 test_computed_value("border-block-style", "double groove");
     27 test_computed_value("border-block-style", "hidden hidden", "hidden");
     28 </script>
     29 </body>
     30 </html>