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
1.0 KiB
HTML
22 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<title>CSS Test: word-break: break-word and overflow-wrap interaction</title>
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1296042">
|
|
<link rel="help" href="https://drafts.csswg.org/css-text/#propdef-word-break">
|
|
<link rel="help" href="https://drafts.csswg.org/css-text/#propdef-overflow-wrap">
|
|
<link rel="help" href="https://drafts.csswg.org/css-text/#valdef-overflow-wrap-anywhere">
|
|
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
|
|
<link rel="match" href="word-break-break-word-overflow-wrap-interactions-ref.html">
|
|
<style>
|
|
div {
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
<p>The boxes below should look the same.</p>
|
|
<div style="word-break: break-word; overflow-wrap: anywhere;">FillerFillerFillerFiller</div>
|
|
<div style="word-break: break-word; overflow-wrap: break-word;">FillerFillerFillerFiller</div>
|
|
<div style="word-break: break-word; overflow-wrap: normal;">FillerFillerFillerFiller</div>
|