Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/word-break/word-break-break-all-016.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Text Test: word-break: break-all</title> <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> <link rel="help" title="5.2. Breaking Rules for Letters: the word-break property" href="https://drafts.csswg.org/css-text-3/#word-break-property"> <link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-word-break-break-all"> <link rel="match" href="reference/word-break-break-all-010-ref.html"> <meta name="assert" content="break-all breaks between the last two letters, because breaking opportunities between the punctuaction characters are forbidden."> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> div { position: relative; font-size: 20px; font-family: Ahem; line-height: 1em; } .red { position: absolute; width: 100px; height: 100px; background: green; color: red; z-index: -1; } .test { color: green; width: 8ch; word-break: break-all; } </style> <body> <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> <div class="red">XX XX<br>XXXX</div> <div class="test">XX XXX...</div> </body>
/css/css-text/word-break/reference/word-break-break-all-010-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Text Reference File</title> <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/"> <style> div { position: relative; width: 100px; height: 100px; background: green; } </style> <body> <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> <div></div> </body>