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>
25 lines
971 B
HTML
25 lines
971 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>word-break: break-all on inline element</title>
|
|
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
|
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
|
<link rel='match' href='reference/word-break-break-all-inline-006-a-ref.html'>
|
|
<link rel='match' href='reference/word-break-break-all-inline-006-b-ref.html'>
|
|
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
|
<style>
|
|
div {
|
|
border: solid 5px;
|
|
margin: 5px;
|
|
font-family: monospace;
|
|
width: 6.1ch;
|
|
padding: 1px;
|
|
}
|
|
.test { word-break: break-all; }
|
|
.blue { border-color: blue; }
|
|
.orange { border-color: orange; }
|
|
</style>
|
|
<p>Test passes if the black box is identical to either the blue or the orange one.
|
|
<div class="blue">aaaabb<br>bbbbbb<br>bbb<br>ccccc</div>
|
|
<div>aaaa<span class="test">bbbbbbbbbbb</span>ccccc</div>
|
|
<div class="orange">aaaabb<br>bbbbbb<br>bb<br>bccccc</div>
|