partial-prerender-in-svg-1-ref.html (550B)
1 <!DOCTYPE html> 2 <html> 3 <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> 4 <style> 5 html { 6 overflow: hidden; 7 } 8 body { 9 margin: 0px; 10 padding: 0px; 11 } 12 #target { 13 transform: translateX(-725px); 14 } 15 </style> 16 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"> 17 <g id="target"> 18 <svg xmlns="http://www.w3.org/2000/svg" width="10000"> 19 <rect fill="green" x="0" width="1125" height="400"></rect> 20 <rect fill="red" x="1125" width="800" height="400"></rect> 21 </svg> 22 </g> 23 </svg> 24 </html>