1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transitions/crashtests/delete-image-set.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
496 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://crbug.com/363567">
<link rel="help" href="https://issues.chromium.org/issues/40360947">
<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>