fune/testing/web-platform/tests/css/css-layout-api/position-fragment/vrl-rtl.https.html
Ian Kilpatrick c207c09546 Bug 1574537 [wpt PR 18503] - [css-layout-api] Move tests into various sub-directories., a=testonly
Automatic update from web-platform-tests
[css-layout-api] Move tests into various sub-directories.

Tests-only. Moves tests into logically grouped sub-directories.
This speeds up (local) test runs as parallelization happens on a per
directory basis.

Bug: 726125
Change-Id: I963184ea74675a4c662ec4779afafa085c33ea0e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757890
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Auto-Submit: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#687807}

--

wpt-commits: f10378fa073caba1a793c28801a5231aeab95279
wpt-pr: 18503


--HG--
rename : testing/web-platform/tests/css/css-layout-api/auto-block-size-absolute-ref.html => testing/web-platform/tests/css/css-layout-api/auto-block-size/absolute-ref.html
rename : testing/web-platform/tests/css/css-layout-api/auto-block-size-flex-ref.html => testing/web-platform/tests/css/css-layout-api/auto-block-size/flex-ref.html
rename : testing/web-platform/tests/css/css-layout-api/auto-block-size-floats-ref.html => testing/web-platform/tests/css/css-layout-api/auto-block-size/floats-ref.html
rename : testing/web-platform/tests/css/css-layout-api/auto-block-size-inflow-ref.html => testing/web-platform/tests/css/css-layout-api/auto-block-size/inflow-ref.html
rename : testing/web-platform/tests/css/css-layout-api/auto-block-size-negative-ref.html => testing/web-platform/tests/css/css-layout-api/auto-block-size/negative-ref.html
rename : testing/web-platform/tests/css/css-layout-api/support/layout-child-sizes-worklet.js => testing/web-platform/tests/css/css-layout-api/child-constraints/support/layout-child-sizes-worklet.js
rename : testing/web-platform/tests/css/css-layout-api/constraints-fixed-inline-size-ref.html => testing/web-platform/tests/css/css-layout-api/constraints/fixed-inline-size-ref.html
rename : testing/web-platform/tests/css/css-layout-api/support/constraints-fixed-block-size-quirky-body-iframe.html => testing/web-platform/tests/css/css-layout-api/constraints/support/constraints-fixed-block-size-quirky-body-iframe.html
rename : testing/web-platform/tests/css/css-layout-api/support/constraints-fixed-block-size.js => testing/web-platform/tests/css/css-layout-api/constraints/support/constraints-fixed-block-size.js
rename : testing/web-platform/tests/css/css-layout-api/support/constraints-fixed-inline-size.js => testing/web-platform/tests/css/css-layout-api/constraints/support/constraints-fixed-inline-size.js
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-return.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/bad-return.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-constructor-error.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/constructor-error.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-error.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/error.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-ref.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/fallback-ref.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-invalid-child.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/invalid-child.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-invalid-fragment.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/invalid-fragment.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-no-promise.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/no-promise.https.html
rename : testing/web-platform/tests/css/css-layout-api/fallback-layout-unresolved-promise.https.html => testing/web-platform/tests/css/css-layout-api/fallback-layout/unresolved-promise.https.html
rename : testing/web-platform/tests/css/css-layout-api/layout-child-inlines-dynamic.https.html => testing/web-platform/tests/css/css-layout-api/layout-child/inlines-dynamic.https.html
rename : testing/web-platform/tests/css/css-layout-api/support/layout-child-worklet.js => testing/web-platform/tests/css/css-layout-api/layout-child/support/layout-child-worklet.js
rename : testing/web-platform/tests/css/css-layout-api/position-fragment-ref.html => testing/web-platform/tests/css/css-layout-api/position-fragment/ref.html
rename : testing/web-platform/tests/css/css-layout-api/support/layout-position-child-worklet.js => testing/web-platform/tests/css/css-layout-api/position-fragment/support/layout-position-child-worklet.js
2019-08-27 04:11:28 +00:00

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="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: vertical-rl;
direction: rtl;
}
.child-1 {
background: rebeccapurple;
width: 10px;
height: 20px;
--inline-offset: 55;
--block-offset: 85;
}
.child-2 {
writing-mode: vertical-rl;
background: rebeccapurple;
width: 15px;
height: 25px;
--inline-offset: 15;
--block-offset: 35;
}
@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>