forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-layout-api] Baselines This change adds support for the CSS Layout API Alignment, both in retrieving child baselines and in setting parent baselines. https://drafts.css-houdini.org/css-layout-api/#interaction-alignment Due to recent changes, fragments produce only one baseline. https://chromium-review.googlesource.com/c/chromium/src/+/1988376 As a result, custom LayoutFragments will always produce the first-line baseline. Bug: 726125 Change-Id: Ia92eddcd8cf6d7f1cc58c767cc71a199b0b7418e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2015723 Commit-Queue: Alison Maher <almaher@microsoft.com> Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#735196} -- wpt-commits: 338106e67c47bce94fd1fe5d3810f922b2860946 wpt-pr: 21398
58 lines
1.4 KiB
HTML
58 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html class=reftest-wait>
|
|
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#interaction-alignment">
|
|
<link rel="match" href="../green-square-ref.html">
|
|
<meta name="assert" content="This test checks that passing child baseline to a parent works correctly." />
|
|
<style>
|
|
.test {
|
|
background: green;
|
|
padding: 0 10px;
|
|
width: 80px;
|
|
}
|
|
|
|
@supports (display: layout(parent)) {
|
|
.test {
|
|
display: layout(parent);
|
|
background: green;
|
|
}
|
|
|
|
.child {
|
|
display: layout(child);
|
|
}
|
|
}
|
|
</style>
|
|
<script src="/common/reftest-wait.js"></script>
|
|
<script src="/common/worklet-reftest.js"></script>
|
|
|
|
<div class="test">
|
|
<div class="child"></div>
|
|
</div>
|
|
|
|
<script id="code" type="text/worklet">
|
|
const BASELINE = 10;
|
|
|
|
registerLayout('parent', class {
|
|
async intrinsicSizes() {}
|
|
async layout(children) {
|
|
const childFragments = await Promise.all(children.map(child => child.layoutNextFragment({})));
|
|
|
|
if (childFragments[0].baseline != BASELINE)
|
|
return {autoBlockSize: 0, childFragments};
|
|
|
|
return {autoBlockSize: 100, childFragments};
|
|
}
|
|
});
|
|
|
|
registerLayout('child', class {
|
|
async intrinsicSizes() {}
|
|
async layout(children) {
|
|
const childFragments = await Promise.all(children.map(child => child.layoutNextFragment({})));
|
|
return { childFragments, baseline: BASELINE }
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, document.getElementById('code').textContent);
|
|
</script>
|
|
</html>
|