Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / dom / svg / crashtests / 380101-1.svg
blobcb3aa3e263dfcb666e94548d058a80b8cd70aebd
1 <svg xmlns:xlink="http://www.w3.org/1999/xlink"
2 xmlns:html="http://www.w3.org/1999/xhtml"
3 xmlns="http://www.w3.org/2000/svg"
4 onload="setTimeout(boom, 30);"
5 class="reftest-wait">
7 <html:style>
8 .zind { z-index: 0; }
9 .gencon:after { content: counter(chicken); }
10 </html:style>
12 <script>
13 function boom()
15 document.getElementById("define").setAttribute("class", "gencon");
16 document.getElementById("use").setAttribute("class", "zind");
18 document.documentElement.removeAttribute("class");
20 </script>
22 <defs>
23 <g id="define">
24 <rect x="0" y="0" width="75" height="75" fill="green"/>
25 </g>
26 </defs>
28 <use xlink:href="#define" x="0" y="20" id="use" />
30 </svg>