Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>SVG with invalid mask-image (url())</title>
<link rel="match" href="reference/mask-image-ref.html">
<style>
svg > rect {
/* Single invalid mask layer: Mask is ignored. */
mask-image: url("invalid://nonexistent");
}
</style>
<p>The test passes if there is a green square and no red below.</p>
<svg height="200">
<rect width="200" height="200" fill="green"/>
</svg>