Bug 1649121: part 48) Rename `MakeEmpty` in `ContentIteratorBase::InitInternal`....
[gecko.git] / layout / reftests / svg / stroke-linecap-square-w-zero-length-segs-02.svg
blob506b2f12fdf6b3853d8f7254c1d1c80524aa2ae8
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">
7 <title>Test 'stroke-linecap: square' with zero length path segments</title>
9 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=589648 for path and
10 https://bugzilla.mozilla.org/show_bug.cgi?id=1187770 for line -->
12 <script>
14 function run()
16 document.getElementById('path').setAttribute('stroke-linecap', 'butt');
17 document.getElementById('line').setAttribute('stroke-linecap', 'butt');
18 document.documentElement.removeAttribute('class');
21 window.addEventListener("MozReftestInvalidate", run, false);
23 </script>
25 <rect width="100%" height="100%" style="fill:lime"/>
27 <path id="path" stroke="red" stroke-width="200" stroke-linecap="square"
28 d="M100,100 L100,100"/>
30 <line id="line" stroke="red" stroke-width="200" stroke-linecap="square"
31 x1="300" y1="300" x2="300" y2="300"/>
33 </svg>