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/clip-path/clip-path-restyle-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
.clip {
clip-path: padding-box
}
</style>
<div id="target" class="clip">Content</div>
<script>
document.body.scrollHeight;
target.classList.remove("clip");
</script>