Status: PASS | Duration: 55ms | Subtests: 7/7 | 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 |
|---|---|---|
| e.style['-webkit-line-clamp'] = "auto" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "0" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "-5" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "none \"~\"" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "1 no-ellipsis" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "1 \"~\"" should not set the property value | PASS | |
| e.style['-webkit-line-clamp'] = "1 -webkit-legacy" should not set the property value | PASS |
/css/css-overflow/parsing/webkit-line-clamp-invalid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Overflow: parsing -webkit-line-clamp with invalid values</title> <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#webkit-line-clamp"> <meta name="assert" content="-webkit-line-clamp supports only the grammar 'none | <integer>'."> <meta name="assert" content="Zero or negative max-lines integers are invalid."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_invalid_value("-webkit-line-clamp", 'auto'); test_invalid_value("-webkit-line-clamp", '0'); test_invalid_value("-webkit-line-clamp", '-5'); test_invalid_value("-webkit-line-clamp", 'none "~"'); test_invalid_value("-webkit-line-clamp", '1 no-ellipsis'); test_invalid_value("-webkit-line-clamp", '1 "~"'); test_invalid_value("-webkit-line-clamp", '1 -webkit-legacy'); </script> </body> </html>