tor-browser

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

animate-display-table-opacity.html (276B)


      1 <!DOCTYPE html>
      2 <title>Testcase for bug 1245075</title>
      3 <style>
      4 @keyframes HoldOpacity {
      5  from, to { opacity: 0.6 }
      6 }
      7 #test {
      8  width: 100px; height: 100px;
      9  background: blue;
     10  display: table;
     11  animation: HoldOpacity 100s linear infinite;
     12 }
     13 </style>
     14 <div id="test"></div>