getComputedStyle-insets-static.html (766B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSSOM: resolved values of the inset properties for static positioning</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, containerForInflow} from "./support/getComputedStyle-insets.js"; 11 runTests({ 12 style: "position: static", 13 containingBlockElement: containerForInflow, 14 containingBlockArea: "content", 15 preservesPercentages: true, 16 preservesAuto: true, 17 canStretchAutoSize: false, 18 }); 19 </script>