Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 3 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-fonts/font-weight-sign-function.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Fonts test: font-weight with CSS sign() function</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<style>
:root {
font-size: 16px;
}
</style>
<div id="target"></div>
<script>
test_computed_value("font-weight", "calc(sign(1rem - 1px) * 10)", "10");
test_computed_value("font-weight", "calc(sign(1rem - 1px) * -10000)", "1");
test_computed_value("font-weight", "calc(sign(1rem - 1px) * 10000)", "1000");
</script>