Files
rust_browser/tests/external/wpt/fixtures/wpt-css-css2-normal-flow-negative-margin-001-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

43 lines
822 B
HTML

<!DOCTYPE html>
<title>Negative margins in LTR/RTL and BFC/non-BFC</title>
<link rel="author" title="Koji Ishii" href="kojii@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS22/box.html#margin-properties" title="Margin properties">
<link rel="match" href="negative-margin-001-ref.html">
<style>
html, body {
margin: 0;
}
html {
margin-left: 10px;
}
outer {
display: block;
border: blue 10px solid;
width: 100px;
}
inner {
display: block;
border: orange 10px solid;
margin-left: -20px;
margin-right: -50px;
height: 10px;
}
inner.bfc {
overflow: hidden;
}
</style>
<body>
<outer>
<inner></inner>
</outer>
<outer dir="rtl">
<inner></inner>
</outer>
<outer>
<inner class="bfc"></inner>
</outer>
<outer dir="rtl">
<inner class="bfc"></inner>
</outer>
</body>