summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/content-on-marker-pseudo-element-at-half.html
blob: 0eaffcc6cbbfedb1dccee82f7ee1774cda128988 (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: ''; }
    to { content: 'content'; }
  }
  #target::marker {
    content: 'initial';
    animation: anim 100s linear -50s paused;
  }
  #target {
    display: list-item;
    margin-left: 200px;
  }
  </style>
  <div id='target'></div>
</html>