diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-flex-none.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-flex-none.https.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-flex-none.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-flex-none.https.html new file mode 100644 index 00000000000..9ef11daccf7 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-flex-none.https.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html class=reftest-wait> +<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutconstraints-fixedblocksize"> +<link rel="match" href="../green-square-ref.html"> +<meta name="assert" content="This test checks that LayoutConstraints#fixedBlockSize is passed into the layout function correctly." /> +<style> +body { + display: flex; +} + +.test { + background: red; + --expected-block-size: null; + width: 100px; +} + +.child { + background: green; +} + +@supports (display: layout(test)) { + .test { + display: layout(test); + } +} +</style> +<script src="/common/reftest-wait.js"></script> +<script src="/common/worklet-reftest.js"></script> + +<div class="test"> + <div class="child"></div> +</div> + +<script> +importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, {url: 'support/constraints-fixed-block-size.js'}); +</script> |