Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/crashtests/chrome-bug-517309206.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<p>This test should not crash.</p>
<svg>
<rect width="100" height="100" fill="url(support/ext.svg#p)"/>
</svg>
<script>
let n = 0;
function bump() {
document.body.style.opacity = 1 - (n % 2) * 0.001;
if (++n < 60) {
requestAnimationFrame(bump);
} else {
document.documentElement.className = '';
}
}
requestAnimationFrame(bump);
</script>