tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

content-on-marker-pseudo-element-at-beginning.html (304B)


      1 <!DOCTYPE html>
      2 <html>
      3  <style>
      4  @keyframes anim {
      5    from { content: 'content'; }
      6    to { content: ''; }
      7  }
      8  #target::marker {
      9    content: 'initial';
     10    animation: anim 100s paused;
     11  }
     12  #target {
     13    display: list-item;
     14    margin-left: 200px;
     15  }
     16  </style>
     17  <div id='target'></div>
     18 </html>