Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /scroll-animations/animation-trigger/crashtests/selection-pseudo-crash.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
  <body>
    <style>
      @keyframes myAnim {}
      .target {
        animation: myAnim linear 0.5s forwards
      }
      #scroll_target {
        animation-trigger: --scrolltrigger play-once;
        timeline-trigger: --scrolltrigger scroll() 150px 200px
      }
      .subject,
      .target::selection {
        height: 50px;
      }
      </style>
  <div id=scroll_target class="subject target" 0></div>
  </body>
</html>