gecko-dev/testing/web-platform/tests/css/css-sizing/parsing/min-height-computed.html
Eric Willigers 5c8ce0dd89 Bug 1576358 [wpt PR 18521] - [css-sizing] Computed min/max width/height, a=testonly
Automatic update from web-platform-tests
[css-sizing] Computed min/max width/height (#18521)

The computed value for the following properties is
as specified, with <length-percentage> values computed.
- min-width
- min-height
- max-width
- max-height

https://drafts.csswg.org/css-sizing-3/#min-size-properties
https://drafts.csswg.org/css-sizing-3/#max-size-properties
--

wpt-commits: a65523781362dda0c6edaf1d78ec48038d2e93a2
wpt-pr: 18521
2019-08-27 04:11:59 +00:00

33 lines
1,012 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS basic box model: getComputedStyle().minHeight</title>
<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#propdef-min-height">
<meta name="assert" content="min-height computed value is as specified, with <length-percentage> values computed">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<style>
#target {
font-size: 40px;
}
</style>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("min-height", "min-content");
test_computed_value("min-height", "max-content");
test_computed_value("min-height", "10px");
test_computed_value("min-height", "20%");
test_computed_value('min-height', 'calc(10% + 40px)');
test_computed_value('min-height', 'calc(10px - 0.5em)', '0px');
test_computed_value('min-height', 'calc(10px + 0.5em)', '30px');
// fit-content not yet tested
</script>
</body>
</html>