Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-masking/mask-image/mask-image-svg-gradient-zoomed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>linear-gradient() mask-image on <rect> in zoomed SVG</title>
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<style>
svg {
zoom: 2;
}
</style>
<p>Test passes if there is a filled green square.</p>
<svg>
<rect width="50" height="100" fill="green"
style="mask-image: linear-gradient(black 50px, transparent 50px)"/>
</svg>