testing/web-platform/tests/css/css-masking/parsing/mask-composite-computed.html
author Sotaro Ikeda <sotaro.ikeda.g@gmail.com>
Thu, 10 Jul 2025 00:10:09 +0000 (9 hours ago)
changeset 795941 23763b72c35abeead04f63e4503c28abc73d065d
parent 684237 609bf38ac580ad1ac488eab5ba7d39b552306ad4
permissions -rw-r--r--
Bug 1976135 - Remove nightly only limitation of pref gfx.webrender.layer-compositor r=gfx-reviewers,gw Differential Revision: https://phabricator.services.mozilla.com/D256379
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking Module Level 1: getComputedStyle().maskComposite</title>
<link rel="help" href="https://drafts.fxtf.org/css-masking-1/#the-mask-composite">
<meta name="assert" content="mask-composite computed value is as specified.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("mask-composite", "add");
test_computed_value("mask-composite", "subtract");
test_computed_value("mask-composite", "intersect");
test_computed_value("mask-composite", "exclude");
</script>
</body>
</html>