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>
27 lines
765 B
HTML
27 lines
765 B
HTML
<!doctype html>
|
|
<title>CSS Test: Floats in nowrap context</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#float-position">
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=488725">
|
|
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
|
|
<link rel="author" href="https://www.mozilla.org" title="Mozilla">
|
|
<link rel="match" href="float-nowrap-1.html">
|
|
<style>
|
|
div {
|
|
width: 10ch;
|
|
white-space: nowrap;
|
|
font-family: monospace;
|
|
}
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
.float {
|
|
float: right;
|
|
width: 5ch;
|
|
height: 5ch;
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<div>
|
|
<span class="nowrap">S<div class="float"></div><span>ome</span> text that overflows my parent.</span>
|
|
</div>
|