Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-animations/crashtests/pseudo-element-animation-with-marker.html - WPT Dashboard Interop Dashboard
 
 
<!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>