665209-1.html (379B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 function boom() 6 { 7 var w = '<div xmlns="http://www.w3.org/1999/xhtml" style="content: url(#);" />'; 8 var v = 'url("data:image/svg+xml,' + encodeURIComponent(w) + '")'; 9 document.documentElement.style.content = v; 10 document.documentElement.className = ""; 11 } 12 </script> 13 </head> 14 15 <body onload="boom();"></body> 16 </html>