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/parsing/gap-decorations-important.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS GapDecorations: !important flag parsing</title>
<link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="target" style="display: flex; column-rule: 5px solid red !important"></div>
</body>
<script>
test(() => {
assert_equals(target.style.columnRuleStyle, 'solid');
assert_equals(target.style.columnRuleWidth, '5px');
assert_equals(target.style.columnRuleColor, 'red');
});
</script>
</html>