summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-layout-api/edges/padding-vrl.https.html
blob: a65ecad31152da6c44ca49c0fd81d47a950934fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutedges">
<link rel="match" href="../green-square-ref.html">
<meta name="assert" content="This test checks that padding sizes are passed to the layout correctly." />
<style>
.test {
  writing-mode: vertical-rl;
  background: red;
  box-sizing: border-box;
  height: 100px;

  --edges-inline-start-expected: 10;
  --edges-inline-end-expected: 0;
  --edges-block-start-expected: 8;
  --edges-block-end-expected: 20;

  font-size: 8px;

  padding: 10px 1em 0 20px;
}

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