end-of-time-002-crash.html (604B)
1 <!DOCTYPE html> 2 <html class="test-wait"> 3 <title>Seeking the time container to a large value does not cause a crash (or hang)</title> 4 <svg> 5 <rect height="100" width="100" fill="blue"> 6 <animateTransform begin="18446744073709551557" dur="2" repeatCount="indefinite" 7 attributeName="transform" type="rotate" from="0,15,15" to="360,15,15"/> 8 </rect> 9 </svg> 10 <script> 11 let svg = document.querySelector("svg"); 12 svg.setCurrentTime(9000000000000000); 13 let html = document.documentElement; 14 html.addEventListener("TestRendered", () => html.classList.remove("test-wait")); 15 </script>