Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/word-break/word-break-break-all-inline-009.html
<!DOCTYPE html> <html lang=en> <meta charset="utf-8"> <title>word-break: break-all on inline element</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"> <meta name="flags" content="Ahem"> <link rel="match" href="reference/word-break-break-all-010-ref.html"> <meta name="assert" content="'overflow-wrap: anywhere' works when specified on inline element"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> div, span { font: 10px / 1 Ahem; color: green; } .fail { position: absolute; background: green; color: red; height: 100px; z-index: -1; } .testdiv { width: 5ch; } .test { word-break: break-all; } </style> <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> <div class="fail">XXXXXXXXXX<br>XXXXX<br>XXXX<br>XXX</div> <div class="testdiv">XXXXXXXXXX<span class="test">XXXXXXXXX</span>XXX</div>
/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>