gecko-dev/testing/web-platform/tests/css/css-layout-api/layout-child/inlines.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.3 KiB
HTML

<!DOCTYPE html>
<html class=reftest-wait>
<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#layout-children">
<link rel="match" href="../green-square-ref.html">
<meta name="assert" content="This test checks that inline children are correctly blockified or wrapped in anonymous boxes." />
<style>
/* We have a wrapper in this test to ensure that any text that is positioned
* slightly outside the "test" box doesn't affect the rendering.
* This wrapper has a 10px inline padding which does the trick. */
.wrapper {
background: green;
padding: 0 10px;
width: 80px;
}
.test {
--child-expected: ["1", "default", "3", "4", "5"];
background: red;
color: green;
width: 80px;
--child: default;
}
.inflow {
visibility: hidden;
--child: 3;
}
@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="wrapper">
<div class="test">
<span style="--child: 1;">Text,</span> more text
<div class="inflow"></div>
<span style="--child: 4;">Text,
<div>block!</div>
</span>
<span style="--child: 5;">Other text</span>
</div>
</div>
<script>
importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, {url: 'support/layout-child-worklet.js'});
</script>