Files
rust_browser/tests/external/wpt/fixtures/wpt-css-css-flexbox-multiline-reverse-wrap-baseline-ref.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

53 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
border-spacing: 0;
border-collapse: collapse;
margin-bottom: 10px;
}
td {
padding: 0;
width: 100px;
}
</style>
</head>
<body>
<table style="background-color: #aaa">
<tr><td colspan=2 style="height: 5px"></td></tr>
<tr>
<td style="vertical-align: top"><div style="background-color: pink">third</div></td>
<td style="background-color: yellow">fourth<br>fourth</td>
</tr>
<tr>
<td style="background-color: lightblue">first<br>first<br>first</td>
<td style="vertical-align: top"><div style="background-color: lightgreen">second</div></td>
</tr>
</table>
<table style="background-color: #aaa">
<tr>
<td style="vertical-align: top"><div style="background-color: pink">third</div></td>
<td style="background-color: yellow">fourth<br>fourth</td>
</tr>
<tr><td colspan=2 style="height: 5px"></td></tr>
<tr>
<td style="background-color: lightblue">first<br>first<br>first</td>
<td style="vertical-align: top"><div style="background-color: lightgreen">second</div></td>
</tr>
</table>
<table style="background-color: #aaa">
<tr>
<td style="vertical-align: top; background-color: lightblue; height: 100px">first</td>
<td style="vertical-align: bottom"><div style="background-color: lightgreen">second</div><div>&nbsp;</div></td>
<td style="vertical-align: bottom"><div style="background-color: pink">third<br>third</div></td>
</tr>
</table>
</body>
</html>