https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0ebe89edfb1677112c9db968e7fa5e6b755326d1 authored by Anne van Kesteren on 28 May 2018, 13:26:49 UTC
Use the The 3-Clause BSD License from opensource.org
Tip revision: 0ebe89e
position-fragment-htb-ltr.https.html
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#layoutfragment">
<link rel="match" href="position-fragment-ref.html">
<meta name="assert" content="This test checks that child fragments get positioned correctly." />
<style>
.test {
  background: red;
  width: 100px;
  height: 100px;
}

.test {
  writing-mode: horizontal-tb;
  direction: ltr;
}

.child-1 {
  background: rebeccapurple;
  width: 10px;
  height: 20px;

  --inline-offset: 5;
  --block-offset: 25;
}

.child-2 {
  writing-mode: vertical-rl;
  background: rebeccapurple;
  width: 15px;
  height: 25px;

  --inline-offset: 50;
  --block-offset: 60;
}

@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="child-1"></div>
  <div class="child-2"></div>
</div>

<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, {url: 'support/layout-position-child-worklet.js'});
</script>
back to top