Files
rust_browser/tests/external/wpt/fixtures/wpt-css-css-text-word-break-word-break-keep-all-011-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

29 lines
815 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test reference</title>
<link rel="author" title="Richard Tjokroutomo" href="mailto:richard.tjokro2@gmail.com">
<style>
p {
width: min-content;
border: 1px solid #000000;
overflow: visible;
white-space: nowrap;
}
</style>
</style>
<div>
<h2>word-break: normal:</h2>
<p>中文<br>english<br>中文<br>english<br>中文<br>english<br>中文<br>english<br>中文<br>english</p>
<h2>word-break: keep-all:</h2>
<p>中文english中文english中文english中文english中文english</p>
<h2>word-break: keep-all (w/ whitespace):</h2>
<p>中文english中文english<br>中文english中文english中文english</p>
<h2>word-break: keep-all (w/ whitespace & Chinese comma):</h2>
<p>中文english中文english<br>中文english中文<br>english中文english</p>
</div>