tor-browser

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

logical-box-border-width.html (792B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8" />
      3 <title>CSS Logical Properties: Flow-Relative Border Widths</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
      5 <link rel="help" href="https://drafts.csswg.org/css-logical/#border-width">
      6 <meta name="assert" content="This test checks the interaction of the flow-relative border-*-width properties with the physical ones in different writing modes." />
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 
     10 <div id="log"></div>
     11 
     12 <script type="module">
     13 import {runTests, createBoxPropertyGroup} from "./resources/test-box-properties.js";
     14 runTests(createBoxPropertyGroup("border-*-width", {
     15  type: "length",
     16  prerequisites: {"border-*-style": "solid"},
     17 }));
     18 </script>