1747514.html (404B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <script> 5 // Generate an SVG data URI whose URI string will consume 20 MB in expat 6 // (which uses two-byte chars). 7 let img = document.createElement('img'); 8 let rect = "<rect />"; 9 let src = "data:image/svg+xml;utf8,<svg>" + rect.repeat(20 * 1000 * 1000 / rect.length / 2) + "</svg>"; 10 img.src = src; 11 document.body.appendChild(img); 12 </script>