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-foreignobject-zoomed.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<title><mask> on <foreignObject> in zoomed SVG</title>
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<style>
  svg {
    zoom: 2;
  }
  .inner {
    width: 100%;
    height: 100%;
    background: green;
  }
</style>
<p>Test passes if there is a filled green square.</p>
<svg>
  <rect width="50" height="50" fill="red"/>
  <mask id="m">
    <rect width="50" height="50" fill="white"/>
  </mask>
  <foreignObject width="50" height="50" mask="url(#m)">
    <div class="inner"></div>
  </foreignObject>
</svg>