Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 5 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-masking/parsing/mask-size-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking Module Level 1: getComputedStyle().maskSize</title>
<link rel="author" title="Sam Weinig" href="mailto:sam@webkit.org">
<meta name="assert" content="mask-size computed value is a list, each item a pair of sizes (one per axis) each represented as either a keyword or a computed length-percentage value.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<style>
#target {
font-size: 40px;
}
</style>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("mask-size", "1px", "1px auto");
test_computed_value("mask-size", "1px auto", "1px auto");
test_computed_value("mask-size", "2% 3%");
test_computed_value("mask-size", "auto");
test_computed_value("mask-size", "auto auto", "auto");
test_computed_value("mask-size", "auto 4%");
test_computed_value("mask-size", "contain");
test_computed_value("mask-size", "cover");
test_computed_value("mask-size", "calc(10px + 0.5em) calc(10px - 0.5em)", "30px 0px");
test_computed_value("mask-size", "calc(10px - 0.5em) calc(10px + 0.5em)", "0px 30px");
test_computed_value("mask-size", "auto 1px, 2% 3%, contain", "auto 1px");
document.getElementById("target").style['mask-image'] = "none, none";
test_computed_value("mask-size", "auto", "auto, auto", "multiple values");
test_computed_value("mask-size", "auto, 100%", "auto, 100% auto", "multiple values");
test_computed_value("mask-size", "100%", "100% auto, 100% auto", "multiple values");
</script>
</body>
</html>