1
0
Fork 0
firefox/testing/web-platform/tests/css/css-images/cross-fade-legacy-crash.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

22 lines
735 B
HTML

<!DOCTYPE html>
<html class="test-wait">
<head>
<title>CSS Images Test: Serializing legacy cross-fade syntax crashes Chrome</title>
<link rel="help" href="https://crbug.com/1509173">
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
<style>
.missing { border-image: -webkit-cross-fade(none, none, 13%); }
</style>
<script src="/common/gc.js"></script>
</head>
<body>
<p>Test passes if the browser does not crash.</p>
<script>
requestAnimationFrame(async () => {
await garbageCollect();
document.styleSheets[0].cssRules[0].cssText;
document.documentElement.classList.remove('test-wait');
});
</script>
</body>
</html>