Bug 1919788 - LSNG: Always acquire a directory lock for PreparedDatastoreOp; r=dom...
[gecko.git] / layout / reftests / svg / non-scaling-stroke-03.svg
blob9b62d1cafe21717a481f750d0b4f671c71635600
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
6 <title>Test non-scaling-stroke repainting when ancestor transforms change</title>
7 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=875069 -->
8 <script>
10 function doTest() {
11 document.getElementById("g").setAttribute("transform", "scale(2)");
12 document.documentElement.removeAttribute('class');
15 document.addEventListener("MozReftestInvalidate", doTest, false);
16 setTimeout(doTest, 4000); // fallback for running outside reftest
18 </script>
19 <g id="g">
20 <line x1="50" y1="50" x2="50" y2="100" stroke="blue" stroke-width="10"
21 style="vector-effect:non-scaling-stroke;"/>
22 </g>
23 </svg>