Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-viewport/zoom/zoom-with-sign-function.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../support/numeric-testcommon.js"></script>
<style>
#target {
font-size: 10px;
}
</style>
<div id="target"></div>
<script>
test_math_used('calc(sign(1em - 1px) * 2)', '2', {prop:'zoom'});
test_math_used('calc(sign(1em - 1px) * 2%)', '2%', {prop:'zoom'});
</script>