tor-browser

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

content-visibility-on-g.html (654B)


      1 <!DOCTYPE html>
      2 <title>CSS Content Visibility: effect on <g> element</title>
      3 <link rel="author" href="mailto:rbuis@igalia.com">
      4 <link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
      5 <link rel="match" href="content-visibility-on-g-ref.html">
      6 <meta name="assert" content="content-visibility hidden has no effect on g element">
      7 
      8 <div>
      9  <svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
     10    <g style="content-visibility:hidden">
     11      <text x="5" y="16" transform="scale(2, 2)">Hello World!</text>
     12      <text x="8" y="32" transform="translate(0 20) scale(1.25 1)">Hello World Again!</text>
     13    </g>
     14  </svg>
     15 </div>