tor-browser

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

tr-transform-and-will-change.html (342B)


      1 <!DOCTYPE html>
      2 <link rel="match" href="tr-transform-and-will-change-ref.html">
      3 <style>
      4 tbody { background: green; }
      5 td { width: 100px; height: 100px; }
      6 tr { transform: translateX(5px); will-change: transform; }
      7 </style>
      8 <table>
      9  <tbody>
     10    <tr><td></td></tr>
     11    <tr><td></td></tr>
     12  </tbody>
     13 </table>
     14 There should be 2 green boxes above.