Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/style-border-shorthand-var.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>border shorthand containing var()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
"use strict";
test(() => {
const div = document.createElement("div");
div.style.border = "0.1rem solid var(--my-color-value)";
assert_equals(div.style.border, "0.1rem solid var(--my-color-value)", "initial border");
assert_equals(div.style.borderWidth, "", "initial border-width");
div.style.borderWidth = "0.2rem";
assert_equals(div.style.border, "", "border");
assert_equals(div.style.borderWidth, "0.2rem", "border-width");
});
</script>