forked from mirrors/gecko-dev
Automatic update from web-platform-tests[css-layout-api] Allow developers to position fragments. This implements the LayoutFragment.inlineOffset and LayoutFragment.blockOffset attributes. The tests added simply re-create the reference by setting these two attributes in different text directions and writing modes. Change-Id: I1865403ca12e3b174738ee93320eae5ba16ac292 Bug: 726125 Reviewed-on: https://chromium-review.googlesource.com/971832 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by: Emil A Eklund <eae@chromium.org> Reviewed-by: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#546018} wpt-commits: 8ec345bcd24282ce94960fc0b11ca057bec393be wpt-pr: 10161 wpt-commits: 8ec345bcd24282ce94960fc0b11ca057bec393be wpt-pr: 10161
54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
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: rtl;
|
|
}
|
|
|
|
.child-1 {
|
|
background: rebeccapurple;
|
|
width: 10px;
|
|
height: 20px;
|
|
|
|
--inline-offset: 85;
|
|
--block-offset: 25;
|
|
}
|
|
|
|
.child-2 {
|
|
writing-mode: vertical-rl;
|
|
background: rebeccapurple;
|
|
width: 15px;
|
|
height: 25px;
|
|
|
|
--inline-offset: 35;
|
|
--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>
|