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-font-shorthand.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Setting font shorthand</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="div"></div>
<script>
"use strict";
test(() => {
const div = document.getElementById("div");
div.style.font = "normal bold 4px sans-serif";
assert_equals(div.style.font, "bold 4px sans-serif");
}, "should get normalized value for font shorthand");
</script>