Source code
Revision control
Copy as Markdown
Other Tools
class="reftest-wait">
<title>Removing a clip-path attribute pointing to an empty <clipPath></title>
<h:link rel="match" href="reference/clip-path-square-003-ref.svg"/>
<h:script src="/common/reftest-wait.js"/>
<h:script src="/common/rendering-utils.js"/>
<clipPath id="empty"/>
<g clip-path='url("#empty")'>
<rect width="200" height="200" fill="green"/>
</g>
<script>
waitForAtLeastOneFrame().then(() => {
document.querySelector('svg > g').removeAttribute('clip-path');
takeScreenshot();
});
</script>
</svg>