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>
17 lines
941 B
HTML
17 lines
941 B
HTML
<!DOCTYPE html>
|
|
<title>Painting order of collapsed table borders</title>
|
|
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-tables/#border-collapsing">
|
|
<link rel="help" href="https://drafts.csswg.org/css-position-4/#painting-order">
|
|
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/11570">
|
|
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
|
|
<meta name="assert" content="
|
|
The collapsed border of the table is painted in front of the border of the
|
|
following block sibling, when the table has `display: inline-table`.
|
|
">
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<table style="border-collapse: collapse; display: inline-table; vertical-align: top">
|
|
<td style="border: 50px solid green; padding: 0"></td>
|
|
</table>
|
|
<div style="border: 50px solid red; width: 0px; margin-top: -100px"></div>
|