mirror of
https://github.com/servo/servo.git
synced 2025-06-26 10:04:33 +01:00
36 lines
933 B
HTML
36 lines
933 B
HTML
<!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: horizontal-tb;
|
|
background: red;
|
|
box-sizing: border-box;
|
|
width: 100px;
|
|
|
|
--edges-inline-start-expected: 20;
|
|
--edges-inline-end-expected: 8;
|
|
--edges-block-start-expected: 10;
|
|
--edges-block-end-expected: 0;
|
|
|
|
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>
|