Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Gaps: parsing rule-inset shorthands with valid values</title>
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
const properties = ['column-rule-inset', 'row-rule-inset', 'rule-inset'];
for (const property of properties) {
test_valid_value(property, '0', '0px 0px / 0px 0px');
test_valid_value(property, '-20px', '-20px -20px / -20px -20px');
test_valid_value(property, '5%', '5% 5% / 5% 5%');
test_valid_value(property, '10vmin', '10vmin 10vmin / 10vmin 10vmin');
test_valid_value(property, 'calc(8em + 4ex)', 'calc(8em + 4ex) calc(8em + 4ex) / calc(8em + 4ex) calc(8em + 4ex)');
test_valid_value(property, '10px 20px / 30px -10px');
test_valid_value(property, '-10px -20px / 25% 24%');
test_valid_value(property, '5% 10% / 15% 25%');
test_valid_value(property, '10px 20px', '10px 20px / 10px 20px');
test_valid_value(property, '10px 20px / -5px', '10px 20px / -5px -5px');
test_valid_value(property, '10px / 20px 30px', '10px 10px / 20px 30px');
test_valid_value(property, '10px / 20px', '10px 10px / 20px 20px');
}
</script>
</body>
</html>