Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/tentative/parsing/gap-decorations-style-invalid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Gap Decorations: column-rule-style parsing</title>
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<meta name="assert" content="column-rule-style supports only the grammar '[ <line-style-list> | <auto-line-style-list> ]'.">
<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("column-rule-style", "auto");
test_invalid_value("column-rule-style", "dashed, dotted, solid");
test_invalid_value("column-rule-style", "repeat(auto, groove, dotted, ridge)");
test_invalid_value("column-rule-style", "repeat(0, dotted, solid, double)");
test_invalid_value("column-rule-style", "repeat(-1, dotted, dashed, double)");
test_invalid_value("column-rule-style", "repeat(auto, dotted) red repeat(auto, ridge)");
</script>
</body>
</html>