Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>Test if it doesn't crash when pseudo element has animation with marker</title>
<style>
@keyframes test { 0% { marker: url("crash"); } }
body:before { animation-name: test; }
</style>
<doby>
</doby>
<script>
window.onload = () => {
document.getAnimations();
}
</script>