Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-borders/tentative/parsing/box-shadow-offset-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-offset'</title>
<link rel="author" title="Sebastian Zartner" href="mailto:sebastianzartner@gmail.com">
<meta name="assert" content="This test checks that the computed value of 'box-shadow-offset' is correct.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
test_computed_value("box-shadow-offset", "0 0", "0px");
test_computed_value("box-shadow-offset", "10px 0");
test_computed_value("box-shadow-offset", "0 10px");
test_computed_value("box-shadow-offset", "10px 10px", "10px");
test_computed_value("box-shadow-offset", "10px 20px, 30px 40px");
test_computed_value("box-shadow-offset", "calc(1em + 1px) calc(-1em + 1px)", "17px -15px");
</script>