https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 962d90000cca374f4756bc65ea024e06c0150499 authored by Philip Jägenstedt on 22 December 2018, 11:59:40 UTC
DO NOT MERGE: probe for idlharness.js flakiness
Tip revision: 962d900
fallback-layout-return.https.html
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#invoke-a-layout-callback">
<link rel="match" href="fallback-ref.html">
<meta name="assert" content="This test checks that a layout() class with the layout function returning a bad value will fallback to block layout." />
<style>
.test {
  background: red;
  border: solid 2px;
  width: 100px;
}

.float {
  float: left;
  width: 50%;
  height: 100px;
}

.fc {
  display: flow-root;
  height: 100px;
}

@supports (display: layout(bad-return)) {
  .test {
    display: layout(bad-return);
    background: green;
  }
}
</style>
<script src="/common/reftest-wait.js"></script>
<script src="/common/worklet-reftest.js"></script>

<!-- This tests that when the "layout()" layout function returns a bad value, it will fallback to block layout. -->
<div class="test">
  <div class="float"></div>
  <div class="fc"></div>
</div>

<script id="code" type="text/worklet">
registerLayout('bad-return', class {
  *intrinsicSizes() {}
  *layout() { return 42; }
});
</script>

<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, document.getElementById('code').textContent);
</script>
</html>
back to top