mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Automatic update from web-platform-tests [css-multicol] property parsing, computed values (#14259) Test that CSS Multi-column Layout properties parse exactly the grammar specified in the spec. https://drafts.csswg.org/css-multicol/ Test that computed values are as specified, with lengths made absolute. -- wpt-commits: fa234f78976ca7abea803fceb3eb53ad3a8603d2 wpt-pr: 14259
25 lines
1 KiB
HTML
25 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Multi-column Layout: parsing column-rule-style with valid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-multicol/#propdef-column-rule-style">
|
|
<meta name="assert" content="column-rule-style supports the full <line-style> grammar 'none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset'.">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
test_valid_value("column-rule-style", "none");
|
|
test_valid_value("column-rule-style", "hidden");
|
|
test_valid_value("column-rule-style", "dotted");
|
|
test_valid_value("column-rule-style", "dashed");
|
|
test_valid_value("column-rule-style", "solid");
|
|
test_valid_value("column-rule-style", "double");
|
|
test_valid_value("column-rule-style", "groove");
|
|
test_valid_value("column-rule-style", "ridge");
|
|
test_valid_value("column-rule-style", "inset");
|
|
</script>
|
|
</body>
|
|
</html>
|