Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: tsan OR (os == 'android') OR (os == 'mac') OR (os == 'win')
- Manifest: layout/reftests/svg/reftest.list
<!DOCTYPE html>
<html class="reftest-wait reftest-no-flush">
<style>
@keyframes anim {
  from { transform: scale(1); }
  to { transform: scale(0); }
}
</style>
  <path id="target" d="M .1 .1 H .9 V .9 H .10 L .10 .10"/>
</svg>
<script>
document.addEventListener("MozReftestInvalidate", () => {
  target.style.animation = "anim 100s step-end reverse";
  target.addEventListener("animationstart", () => {
    document.documentElement.classList.remove("reftest-wait");
  });
});
</script>
</html>