tor-browser

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

logical-values-resize.html (649B)


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