Status: PASS | Duration: 55ms | Subtests: 5/5 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| Property line-break value 'auto' | PASS | |
| Property line-break value 'loose' | PASS | |
| Property line-break value 'normal' | PASS | |
| Property line-break value 'strict' | PASS | |
| Property line-break value 'anywhere' | PASS |
/css/css-text/parsing/line-break-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text: getComputedStyle().lineBreak</title> <link rel="help" href="https://www.w3.org/TR/css-text-3/#propdef-line-break"> <meta name="assert" content="line-break computed value is specified keyword."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/computed-testcommon.js"></script> </head> <body> <div id="target"></div> <script> test_computed_value("line-break", "auto"); test_computed_value("line-break", "loose"); test_computed_value("line-break", "normal"); test_computed_value("line-break", "strict"); test_computed_value("line-break", "anywhere"); </script> </body> </html>