summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/content-on-marker-pseudo-element-at-beginning.html
blob: 76155708df4a5a9a058014127df5082a7d31ac07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <style>
  @keyframes anim {
    from { content: 'content'; }
    to { content: ''; }
  }
  #target::marker {
    content: 'initial';
    animation: anim 100s paused;
  }
  #target {
    display: list-item;
    margin-left: 200px;
  }
  </style>
  <div id='target'></div>
</html>