wpt / css / css-layout-api / constraints / fixed-inline-size-block-auto-vlr.https.html

Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-layout-api/constraints/fixed-inline-size-block-auto-vlr.https.html

<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutconstraints-fixedinlinesize">
<link rel="match" href="fixed-inline-size-ref.html">
<meta name="assert" content="This test checks that LayoutConstraints#fixedInlineSize is passed into the layout function correctly." />
<style>
body {
  height: 120px;
  writing-mode: vertical-lr;
}

.test {
  margin-bottom: 20px;
  background: red;
}

@supports (display: layout(test)) {
  .test {
    background: green;
    display: layout(test);
  }
}
</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/constraints-fixed-inline-size.js'});
</script>

/css/css-layout-api/constraints/fixed-inline-size-ref.html

<!DOCTYPE html>
<style>
.result {
  background: green;
  height: 100px;
  width: 100px;
}
</style>

<div class="result"></div>