Files
rust_browser/tests/external/wpt/fixtures/wpt-css-css-flexbox-order-order-abs-children-painting-order-different-container-test.html
Zachary D. Rowitsch 16abbd78e7 Bulk-import 2899 WPT CSS reftests and add import tooling
Add scripts/import_wpt_reftests.py to sparse-clone the upstream WPT repo
and bulk-import qualifying CSS reftests (no JS, no external resources) as
known_fail entries. 23 tests already pass and are promoted. The import
script is idempotent and exposed via `just import-wpt`. CI now prints the
WPT summary (pass=36 known_fail=2877 skip=1) on every run.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 00:15:27 -05:00

54 lines
1.2 KiB
HTML

<!DOCTYPE html>
<title>CSS Test: flex order affects painting order of absolutely positioned boxes inside flex</title>
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-order">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1489495">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="This test check that relative positioned boxes that are grandchildren of two flexboxes don't sort paint order relative to each other.">
<style>
#test {
display: flex;
height: 100px;
width: 100px;
}
#test2 {
display: flex;
height: 100px;
width: 100px;
}
#order-1 {
order: 1;
}
#order-2 {
order: 2;
}
.inner {
position: relative;
width: 100px;
height: 100px;
}
#order-1 .inner {
background-color: green;
}
#order-2 .inner {
background-color: red;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="test">
<div id="order-2">
<div class="inner"></div>
</div>
</div>
<div id="test2" style="margin-top: -100px">
<div id="order-1">
<div class="inner"></div>
</div>
</div>