no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 652991-1a.html
blob4dfed12b78870d6184a0230968931f4c7e983fb4
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <svg width="200" height="200">
4 <defs>
5 <pattern id="pattern-id" x="0" y="0" patternUnits="userSpaceOnUse" height="200" width="200">
6 <rect width="200" height="200" style="fill:rgb(0,0,255)" />
7 </pattern>
8 </defs>
9 <circle id="drawPath" cx="101" cy="101" r="50" fill="url(#pattern-id)" stroke="#000">
10 </circle>
11 </svg>
12 <script>
13 function doTest() {
14 window.history.pushState(null, "", "new-page");
16 drawPath.style.display = "none";
17 window.setTimeout(() => {
18 drawPath.style.display = "inline";
19 document.documentElement.removeAttribute('class');
20 }, 0);
23 drawPath = document.getElementById("drawPath");
24 window.addEventListener("MozReftestInvalidate", doTest);
25 </script>
26 </html>