Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-layout-api/auto-block-size/negative.https.html
<!DOCTYPE html> <html class=reftest-wait> <link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#interaction-sizing"> <link rel="match" href="auto-block-size-negative-ref.html"> <meta name="assert" content="This test checks that auto-block-size is correctly clamped to zero." /> <style> .test { background: red; border: solid 2px; margin: 20px 0; } .width-100 { width: 100px; writing-mode: horizontal-tb; } .height-100 { height: 100px; writing-mode: vertical-rl; } @supports (display: layout(block-size-negative)) { .test { display: layout(block-size-negative); background: green; } } </style> <script src="/common/reftest-wait.js"></script> <script src="/common/worklet-reftest.js"></script> <div class="test width-100"></div> <div class="test height-100"></div> <script id="code" type="text/worklet"> registerLayout('block-size-negative', class { async intrinsicSizes() {} async layout() { return {autoBlockSize: -100}; } }); </script> <script> importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, document.getElementById('code').textContent); </script> </html>
/css/css-layout-api/auto-block-size/auto-block-size-negative-ref.html
<!DOCTYPE html> <style> .result { background: green; border: solid 2px; margin: 20px 0; } </style> <div class="result" style="width: 100px; height: 0px;"></div> <div class="result" style="width: 0px; height: 100px;"></div>