Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-images/cross-fade-legacy-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<head>
<title>CSS Images Test: Serializing legacy cross-fade syntax crashes Chrome</title>
<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>