gecko-dev/testing/web-platform/tests/css/cssom/getComputedStyle-insets-static.html
Manuel Rego Casasnovas a1b3555394 Bug 1493048 [wpt PR 13131] - Fix syntax and typos in tests from #12956, a=testonly
Automatic update from web-platform-testsMerge pull request #13131 from Loirooriol/css-computed-insets-fix

Fix syntax and typos in tests from #12956
--

wpt-commits: 6718d7d67d65a2d3073bd29783f4ec6b76d47be8
wpt-pr: 13131
2018-09-27 09:55:50 +00:00

19 lines
766 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSSOM: resolved values of the inset properties for static positioning</title>
<link rel="help" href="https://drafts.csswg.org/cssom/#resolved-value">
<link rel="help" href="https://drafts.csswg.org/css-position/#pos-sch">
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script type="module">
import {runTests, containerForInflow} from "./support/getComputedStyle-insets.js";
runTests({
style: "position: static",
containingBlockElement: containerForInflow,
containingBlockArea: "content",
preservesPercentages: true,
preservesAuto: true,
canStretchAutoSize: false,
});
</script>