tor-browser

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

foreignObject-overflow.html (500B)


      1 <!doctype html>
      2 <html>
      3 <title>foreignObject overflow</title>
      4 <link rel="match" href="foreignObject-overflow-ref.html">
      5 <svg width="400" height="400">
      6  <foreignObject x="100" y="100" style="overflow: visible" width="2" height="2" font-size="16px">
      7    <div style="width:100px;height:100px;background:yellow;border:1px solid red">
      8      <div style="position:absolute;top:20px;left:30px;width:20px;height:20px;background:navy"></div>
      9      Should show all the text
     10    </div>
     11  </foreignObject>
     12 </svg>