Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transitions/crashtests/delete-image-set.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
div { background: url(#); }
div { background: -webkit-image-set(url(#) 1x); }
div { background: image-set(url(#) 1x); }
</style>
<body>
<div style="transition: 1s">This test passes if it does not crash.</div>
</body>
<script>
window.onload = () => {
document.styleSheets[0].deleteRule(2);
document.styleSheets[0].deleteRule(1);
};
</script>