tor-browser

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

logical-values-float-clear.html (738B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8" />
      3 <title>CSS Logical Values: Flow-Relative Values for the 'float' and 'clear' Properties</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
      5 <link rel="help" href="https://drafts.csswg.org/css-logical/#float-clear">
      6 <meta name="assert" content="This test checks the flow-relative values for 'float' and 'clear' 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} from "./resources/test-logical-values.js";
     14 const values = ["inline-start", "inline-end"];
     15 runTests("clear", values);
     16 runTests("float", values);
     17 </script>