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