https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7cf8b31850c212e68883f583185b9885a31143cc authored by Geoffrey Sneddon on 30 March 2018, 03:09:04 UTC
Test for used column-count when column-count/width are not auto
Tip revision: 7cf8b31
auto-block-size-negative.https.html
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#interaction-sizing">
<link rel="match" href="auto-block-size-negative-ref.html">
<meta name="assert" content="This test checks that auto-block-size is correctly clamped to zero." />
<meta name="assert" content="TODO" />

<style>

.test {
  background: red;
  border: solid 2px;
  margin: 20px 0;
}

.width-100 {
  width: 100px;
  writing-mode: horizontal-tb;
}

.height-100 {
  height: 100px;
  writing-mode: vertical-rl;
}

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

<div class="test width-100"></div>
<div class="test height-100"></div>

<script id="code" type="text/worklet">
registerLayout('block-size-negative', class {
  *intrinsicSizes() {}
  *layout() {
    return {autoBlockSize: -100};
  }
});
</script>

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