tor-browser

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

getComputedStyle-insets-nobox.html (706B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSSOM: resolved values of the inset properties when the element generates no box</title>
      4 <link rel="help" href="https://drafts.csswg.org/cssom/#resolved-value">
      5 <link rel="help" href="https://drafts.csswg.org/css-position/#pos-sch">
      6 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
      7 <script src=/resources/testharness.js></script>
      8 <script src=/resources/testharnessreport.js></script>
      9 <script type="module">
     10 import {runTests} from "./support/getComputedStyle-insets.js";
     11 runTests({
     12  style: "display: none",
     13  containingBlockElement: null,
     14  preservesPercentages: true,
     15  preservesAuto: true,
     16  canStretchAutoSize: false,
     17 });
     18 </script>