mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
17 lines
572 B
HTML
17 lines
572 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Multi-column Layout: parsing columns with valid values</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-multicol/#propdef-columns">
|
|
<meta name="assert" content="columns supports the full grammar '<column-width> || <column-count>'.">
|
|
<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("columns", "2 10px", "10px 2");
|
|
</script>
|
|
</body>
|
|
</html>
|