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>
22 lines
849 B
HTML
22 lines
849 B
HTML
<!doctype html>
|
|
<title>'no-repeat' background on table row straddling table cells</title>
|
|
<link rel="help" href="https://www.w3.org/TR/CSS21/tables.html#table-layers">
|
|
<link rel="help" href="https://drafts.csswg.org/css-tables/#drawing-cell-backgrounds">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
|
|
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-4500">
|
|
<style>
|
|
.green {
|
|
background-image: linear-gradient(green, green);
|
|
background-position: 100px 0px;
|
|
background-repeat: no-repeat;
|
|
background-size: 100px 100px;
|
|
}
|
|
</style>
|
|
<p>Test passes if there is a filled green square.</p>
|
|
<table style="border-spacing: 0; margin-left: -100px">
|
|
<tr class="green">
|
|
<td style="padding: 0; height: 100px; width: 150px"></td>
|
|
<td style="padding: 0; height: 100px; width: 50px"></td>
|
|
</tr>
|
|
</table>
|