Bug 1917371 - Consolidate unit_base_updater and unit_service_updater tests, r=bytesiz...
[gecko.git] / layout / reftests / text-svgglyphs / svg-glyph-paintnone.svg
blob7b8d01d87c276676968e2fcf1796f3b010cb818f
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <style type="text/css">
3 <![CDATA[
4 @font-face {
5 font-family: "Liberation";
6 src:url(resources/svg.woff);
8 text
10 font-family: Liberation;
11 font-size: 200px;
12 stroke-opacity: 0.5;
13 fill-opacity: 0.5;
15 ]]>
16 </style>
17 <!--
18 Test that objectFillOpacity evaluates to 0 when fill="none" even when
19 fill-opacity is set, and similar for objectStrokeOpacity.
20 -->
21 <text x="10" y="210" stroke="none" fill="black">W</text>
22 <text x="10" y="410" stroke="black" fill="none">W</text>
23 <text x="210" y="210" stroke="none" fill="black">X</text>
24 <text x="210" y="410" stroke="black" fill="none">X</text>
25 </svg>