tor-browser

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

will-change-under-mask.html (700B)


      1 <!DOCTYPE html>
      2 <meta name="assert" content="will-change descendants should not affect masking">
      3 <link rel="match" href="../struct/reftests/reference/green-100x100.html">
      4 <svg width="200" height="200">
      5  <mask id="mask">
      6    <rect x="0" y="0" width="100" height="50" fill="white"/>
      7    <rect x="0" y="50" width="100" height="50" fill="black"/>
      8  </mask>
      9  <rect x="0" y="0" width="100" height="50" fill="red" />
     10  <rect x="0" y="50" width="100" height="50" fill="green" />
     11  <g mask="url('#mask')">
     12    <rect style="will-change: transform;" x="0" y="0" width="100" height="50" fill="green" />
     13    <rect style="will-change: transform;" x="0" y="50" width="100" height="50" fill="red" />
     14  </g>
     15 </svg>