Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-sizing/stretch/indefinite-1.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help"
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<script src="/resources/check-layout-th.js"></script>
<meta name="assert"
content="with indefinite available space, a preferred size property value of stretch behaves as auto">
<body
onload="checkLayout('[data-expected-client-height]')">
<div style="block-size: stretch; inline-size: 100px; border: solid"
data-expected-client-height="0"></div>
<div style="block-size: stretch; inline-size: 100px; border: solid"
data-expected-client-height="20">
<div style="height: 20px;"></div>
</div>