testing/web-platform/tests/web-animations/crashtests/get-keyframe-fontsize-crash.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 04:32:24 +0000 (34 minutes ago)
changeset 796014 f14d1c1492bc6791542a001365abbca4bd9b28db
parent 771142 0880c3cda9a9ee61203a84bc72ff0dc8d12decf1
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/387447929">
<html id="root">
    <style>
        #root {
            transition: all 5s ease;
        }

        #root.override {
            font-size: 5rem;
        }
    </style>
  <p>This test succeeds if the transition keyframes can be retrieved without a crash</p>
  <script>
      // Transition will not run if document is not loaded
      window.onload = () => {
        document.getElementById("root").className = "override";
        document.getAnimations()[0].effect.getKeyframes();
      };
  </script>
</html>