Status: PASS | Duration: 61ms | 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 text-overflow value 'clip' | PASS | |
| Property text-overflow value 'ellipsis' | PASS | |
| Property text-overflow value '""' | PASS | |
| Property text-overflow value '"-"' | PASS | |
| Property text-overflow value '"marker string"' | PASS |
/css/css-overflow/parsing/text-overflow-computed.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Overflow: getComputedStyle().textOverflow</title> <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-text-overflow"> <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("text-overflow", 'clip'); test_computed_value("text-overflow", 'ellipsis'); // <string> test_computed_value("text-overflow", `""`); test_computed_value("text-overflow", `"-"`); test_computed_value("text-overflow", `"marker string"`); </script> </body> </html>