tor-browser

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

nested-svg-sizing-viewport-units-with-ICB.tentative.html (543B)


      1 <!DOCTYPE html>
      2 <title>Width and Height (in viewport units) as presentation attributes on nested svg</title>
      3 <link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
      4 <link rel="help" href="https://svgwg.org/svg2-draft/styling.html#TermPresentationAttribute">
      5 <link rel="match" href="nested-svg-sizing-viewport-units-with-ICB-expected.html">
      6 
      7 <svg width="50vw" height="100px" xmlns="http://www.w3.org/2000/svg">
      8  <svg width="5px" style="width:50vw;">
      9    <rect width="100%" height="100%" fill="green" />
     10  </svg>
     11 </svg>