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-viewport-changed.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<title>Change of viewport affecting mask content</title>
<link rel="match" href="../clip-path/reference/green-100x100.html">
<div id="container" style="width: 0%">
  <svg style="width: 100%">
    <mask id="mask">
      <rect width="100%" height="100%" fill="white"/>
    </mask>
    <rect width="100" height="100" fill="red"/>
    <rect width="100" height="100" fill="green" mask="url(#mask)"/>
  </svg>
</div>
<script>
  document.body.offsetTop;
  document.getElementById('container').style.width = '100%';
</script>