pseudo-element-animation-with-marker.html (419B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://crbug.com/360457"> 3 <link rel="help" href="https://issues.chromium.org/issues/41099655"> 4 <title>Test if it doesn't crash when pseudo element has animation with marker</title> 5 <style> 6 @keyframes test { 0% { marker: url("crash"); } } 7 body:before { animation-name: test; } 8 </style> 9 <doby> 10 </doby> 11 <script> 12 window.onload = () => { 13 document.getAnimations(); 14 } 15 </script>