Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-layout-api/edges/border-vrl.https.html
<!DOCTYPE html> <html class=reftest-wait> <link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutedges"> <link rel="match" href="../green-square-ref.html"> <meta name="assert" content="This test checks that border sizes are passed to the layout correctly." /> <style> .test { writing-mode: vertical-rl; background: red; box-sizing: border-box; height: 100px; --edges-inline-start-expected: 10; --edges-inline-end-expected: 0; --edges-block-start-expected: 8; --edges-block-end-expected: 20; font-size: 8px; border-color: transparent; border-style: solid; border-width: 10px 1em 0 20px; } @supports (display: layout(test)) { .test { display: layout(test); background: green; } } </style> <script src="/common/reftest-wait.js"></script> <script src="/common/worklet-reftest.js"></script> <div class="test"></div> <script> importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, {url: 'support/edges.js'}); </script>
/css/css-layout-api/green-square-ref.html
<!DOCTYPE html> <style> .result { background: green; height: 100px; width: 100px; } </style> <div class="result"></div>