fune/testing/web-platform/tests/css/css-overflow/parsing/line-clamp-invalid.html
Eric Willigers 9aeb5f59ae Bug 1523562 [wpt PR 14910] - [css-overflow] property parsing and serialization, a=testonly
Automatic update from web-platform-tests
[css-overflow] property parsing and serialization (#14910)

Test that CSS Overflow properties accept the required syntax
https://drafts.csswg.org/css-overflow/#property-index
--

wpt-commits: cd94eba6eca288f9d8862ef822c5f9957c8de343
wpt-pr: 14910
2019-02-07 21:50:31 +00:00

27 lines
919 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Overflow: parsing line-clamp with invalid values</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-line-clamp">
<meta name="assert" content="line-clamp supports only the grammar 'none | <integer> <block-ellipsis>?'.">
<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("line-clamp", 'auto');
test_invalid_value("line-clamp", '0');
test_invalid_value("line-clamp", '-5');
test_invalid_value("line-clamp", '" etc., etc. "');
test_invalid_value("line-clamp", 'none 2');
test_invalid_value("line-clamp", '3 none');
test_invalid_value("line-clamp", 'auto 4');
</script>
</body>
</html>