Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/clamp-integer-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-values/#funcdef-clamp">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
test_computed_value('z-index', 'clamp(10, 20, 30)', '20');
test_computed_value('z-index', 'clamp(none, 30, 33)', '30');
test_computed_value('z-index', 'clamp(none, 33, 30)', '30');
test_computed_value('z-index', 'clamp(30, 33, none)', '33');
test_computed_value('z-index', 'clamp(33, 30, none)', '33');
test_computed_value('z-index', 'clamp(none, 30, none)', '30');
</script>