wpt / css / css-layout-api / child-constraints / fixed-inline-size.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/child-constraints/fixed-inline-size.https.html

<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutconstraintsoptions-fixedinlinesize">
<link rel="match" href="../green-square-ref.html">
<meta name="assert" content="This test checks that fixing the inline size of children works as expected." />

<style>
.test {
  background: red;
  width: 100px;
}

.htb {
  writing-mode: horizontal-tb;
  visibility: hidden;
  width: 3px;
  height: 2px;

  --fixed-inline-size: 10;

  --inline-size-expected: 10;
  --block-size-expected: 2;
}

.vrl {
  writing-mode: vertical-rl;
  visibility: hidden;
  width: 3px;
  height: 2px;

  --fixed-inline-size: 10;

  --inline-size-expected: 10;
  --block-size-expected: 2;
}

@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 class="htb"></div>
  <div class="vrl"></div>
  <!-- min/max-width should have no effect, fixedInlineSize wins. -->
  <div class="htb" style="max-width: 5px;"></div>
  <div class="vrl" style="max-width: 5px;"></div>
  <div class="htb" style="min-width: 15px;"></div>
  <div class="vrl" style="min-width: 15px;"></div>
</div>

<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, {url: 'support/layout-child-sizes-worklet.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>