1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/tests/crashtests/385228-1.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 10);" class="reftest-wait"> 1.5 + 1.6 +<script type="text/javascript"> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + var ttt = document.getElementById("ttt"); 1.11 + ttt.appendChild(document.createTextNode("Pattern on stroke")); 1.12 + ttt.appendChild(document.createTextNode("\n")); 1.13 + ttt.appendChild(document.createTextNode("\n")); 1.14 + 1.15 + document.documentElement.removeAttribute("class"); 1.16 +} 1.17 + 1.18 +</script> 1.19 + 1.20 + 1.21 +<text id="ttt" stroke="url(#pat2)" x="25" y="275"></text> 1.22 + 1.23 +<pattern id="pat2" width="20" height="1000"><g/></pattern> 1.24 + 1.25 +</svg>