Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>