summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/content-on-pseudo-element-at-beginning.html
blob: 0d4f05890b10825df2ce824cb20fda48db56d375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <style>
  @keyframes anim {
    from { content: 'content'; }
    to { content: ''; }
  }
  #target::before {
    content: 'initial';
    animation: anim 100s paused;
  }
  </style>
  <div id='target'></div>
</html>