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>
51 lines
971 B
HTML
51 lines
971 B
HTML
<!doctype html>
|
|
<link rel="help" href="https://www.w3.org/TR/css-tables-3/#dimensioning-the-row-column-grid">
|
|
<link rel="match" href="table_grid_size_col_colspan-ref.html">
|
|
<meta name="assert" content="colspanned cell fits inside grid defined by COL" />
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
table-layout:fixed;
|
|
}
|
|
td {
|
|
height:50px;
|
|
background: yellow;
|
|
border: 10px solid green;
|
|
padding:0;
|
|
}
|
|
col {
|
|
width:50px;
|
|
}
|
|
</style>
|
|
<!--
|
|
<p>Colspanned cell should not grow bigger than table grid.</p>
|
|
<p>Test sizes of colspanned cell when grid width is defined by COL elements</p>
|
|
-->
|
|
<table>
|
|
<col></col>
|
|
<col></col>
|
|
<col></col>
|
|
<td colspan=1></td>
|
|
</table>
|
|
<table>
|
|
<col></col>
|
|
<col></col>
|
|
<col></col>
|
|
<td colspan=2></td>
|
|
</table>
|
|
<table>
|
|
<col></col>
|
|
<col></col>
|
|
<col></col>
|
|
<td colspan=4></td>
|
|
</table>
|
|
<table>
|
|
<col></col>
|
|
<td colspan=1></td>
|
|
</table>
|
|
<table>
|
|
<col></col>
|
|
<td colspan=2></td>
|
|
</table>
|
|
|