├── .github ├── chart-svg2.svg ├── chart.svg ├── copyright.sh ├── pull_request_template.md └── workflows │ ├── main.yml │ └── tagged-release.yml ├── .gitignore ├── .typos.toml ├── AUTHORS ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── crates ├── c-api │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── ResvgQt.h │ ├── cbindgen.toml │ ├── examples │ │ └── cairo │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── example.c │ ├── lib.rs │ └── resvg.h ├── resvg │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ │ ├── bboxes.svg │ │ ├── custom_href_resolver.rs │ │ ├── custom_href_resolver.svg │ │ ├── draw_bboxes.rs │ │ ├── ferris.png │ │ └── minimal.rs │ ├── src │ │ ├── clip.rs │ │ ├── filter │ │ │ ├── box_blur.rs │ │ │ ├── color_matrix.rs │ │ │ ├── component_transfer.rs │ │ │ ├── composite.rs │ │ │ ├── convolve_matrix.rs │ │ │ ├── displacement_map.rs │ │ │ ├── iir_blur.rs │ │ │ ├── lighting.rs │ │ │ ├── mod.rs │ │ │ ├── morphology.rs │ │ │ └── turbulence.rs │ │ ├── geom.rs │ │ ├── image.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── mask.rs │ │ ├── path.rs │ │ └── render.rs │ └── tests │ │ ├── README.md │ │ ├── extra │ │ ├── fill-and-stroke.png │ │ ├── fill-and-stroke.svg │ │ ├── filter-on-empty-group.png │ │ ├── filter-on-empty-group.svg │ │ ├── filter-region-precision.png │ │ ├── filter-region-precision.svg │ │ ├── filter-with-transform-on-shape.png │ │ ├── filter-with-transform-on-shape.svg │ │ ├── group-with-only-transform.png │ │ ├── group-with-only-transform.svg │ │ ├── hidden-element.png │ │ ├── hidden-element.svg │ │ ├── horizontal-line-no-stroke.png │ │ ├── horizontal-line-no-stroke.svg │ │ ├── horizontal-line.png │ │ ├── horizontal-line.svg │ │ ├── miter-join-with-acute-angle.png │ │ ├── miter-join-with-acute-angle.svg │ │ ├── paint-order=stroke.png │ │ ├── paint-order=stroke.svg │ │ ├── simple-stroke.png │ │ ├── simple-stroke.svg │ │ ├── stroke-linecap=square.png │ │ ├── stroke-linecap=square.svg │ │ ├── subpixel-rect-position.png │ │ ├── subpixel-rect-position.svg │ │ ├── transformed-rect.png │ │ ├── transformed-rect.svg │ │ ├── translate-outside-viewbox.png │ │ └── translate-outside-viewbox.svg │ │ ├── fonts │ │ ├── Amiri-LICENSE-OFL.txt │ │ ├── Amiri-Regular.ttf │ │ ├── CFF-and-SBIX-LICENSE-APACHE.txt │ │ ├── CFF-and-SBIX.otf │ │ ├── MPLUS1p-LICENSE-OFL.txt │ │ ├── MPLUS1p-Regular.ttf │ │ ├── Noto-LICENSE-OFL.txt │ │ ├── NotoColorEmojiCBDT-LICENSE_APACHE.txt │ │ ├── NotoColorEmojiCBDT.subset.ttf │ │ ├── NotoColorEmojiCOLR.subset.ttf │ │ ├── NotoMono-Regular.ttf │ │ ├── NotoSans-Black.ttf │ │ ├── NotoSans-Bold.ttf │ │ ├── NotoSans-Italic.ttf │ │ ├── NotoSans-Light.ttf │ │ ├── NotoSans-Regular.ttf │ │ ├── NotoSans-Thin.ttf │ │ ├── NotoSansDevanagari-Regular.ttf │ │ ├── NotoSerif-Regular.ttf │ │ ├── NotoZnamennyMusicalNotation-OFL.txt │ │ ├── NotoZnamennyMusicalNotation-Regular.ttf │ │ ├── README.md │ │ ├── SedgwickAveDisplay-LICENSE-OFL.txt │ │ ├── SedgwickAveDisplay-Regular.ttf │ │ ├── SourceSansPro-LICENSE-OFL.md │ │ ├── SourceSansPro-Regular.ttf │ │ ├── TwitterColorEmoji-LICENSE-MIT.txt │ │ ├── TwitterColorEmoji.subset.ttf │ │ ├── Yellowtail-LICENSE-Apache2.txt │ │ └── Yellowtail-Regular.ttf │ │ ├── gen-tests.py │ │ ├── integration │ │ ├── extra.rs │ │ ├── main.rs │ │ └── render.rs │ │ ├── resources │ │ ├── green.css │ │ ├── image-033.svg │ │ ├── image-63x61.png │ │ ├── image.gif │ │ ├── image.jpg │ │ ├── image.png │ │ ├── image.svg │ │ ├── image.svgz │ │ ├── image.webp │ │ └── simple-text.svg │ │ └── tests │ │ ├── filters │ │ ├── enable-background │ │ │ ├── accumulate-with-new.png │ │ │ ├── accumulate-with-new.svg │ │ │ ├── accumulate.png │ │ │ ├── accumulate.svg │ │ │ ├── filter-on-shape.png │ │ │ ├── filter-on-shape.svg │ │ │ ├── inherit.png │ │ │ ├── inherit.svg │ │ │ ├── new-with-invalid-region-1.png │ │ │ ├── new-with-invalid-region-1.svg │ │ │ ├── new-with-invalid-region-2.png │ │ │ ├── new-with-invalid-region-2.svg │ │ │ ├── new-with-invalid-region-3.png │ │ │ ├── new-with-invalid-region-3.svg │ │ │ ├── new-with-region.png │ │ │ ├── new-with-region.svg │ │ │ ├── new.png │ │ │ ├── new.svg │ │ │ ├── shapes-after-filter.png │ │ │ ├── shapes-after-filter.svg │ │ │ ├── stop-on-the-first-new-1.png │ │ │ ├── stop-on-the-first-new-1.svg │ │ │ ├── stop-on-the-first-new-2.png │ │ │ ├── stop-on-the-first-new-2.svg │ │ │ ├── with-clip-path.png │ │ │ ├── with-clip-path.svg │ │ │ ├── with-filter-on-the-same-element.png │ │ │ ├── with-filter-on-the-same-element.svg │ │ │ ├── with-filter.png │ │ │ ├── with-filter.svg │ │ │ ├── with-mask.png │ │ │ ├── with-mask.svg │ │ │ ├── with-opacity-1.png │ │ │ ├── with-opacity-1.svg │ │ │ ├── with-opacity-2.png │ │ │ ├── with-opacity-2.svg │ │ │ ├── with-opacity-3.png │ │ │ ├── with-opacity-3.svg │ │ │ ├── with-opacity-4.png │ │ │ ├── with-opacity-4.svg │ │ │ ├── with-transform.png │ │ │ └── with-transform.svg │ │ ├── feBlend │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── mode=color-burn.png │ │ │ ├── mode=color-burn.svg │ │ │ ├── mode=darken.png │ │ │ ├── mode=darken.svg │ │ │ ├── mode=hue.png │ │ │ ├── mode=hue.svg │ │ │ ├── mode=lighten.png │ │ │ ├── mode=lighten.svg │ │ │ ├── mode=multiply.png │ │ │ ├── mode=multiply.svg │ │ │ ├── mode=normal.png │ │ │ ├── mode=normal.svg │ │ │ ├── mode=screen.png │ │ │ ├── mode=screen.svg │ │ │ ├── with-subregion-on-input-1.png │ │ │ ├── with-subregion-on-input-1.svg │ │ │ ├── with-subregion-on-input-2.png │ │ │ └── with-subregion-on-input-2.svg │ │ ├── feColorMatrix │ │ │ ├── invalid-type.png │ │ │ ├── invalid-type.svg │ │ │ ├── type=hueRotate-without-an-angle.png │ │ │ ├── type=hueRotate-without-an-angle.svg │ │ │ ├── type=hueRotate.png │ │ │ ├── type=hueRotate.svg │ │ │ ├── type=luminanceToAlpha.png │ │ │ ├── type=luminanceToAlpha.svg │ │ │ ├── type=matrix-with-empty-values.png │ │ │ ├── type=matrix-with-empty-values.svg │ │ │ ├── type=matrix-with-non-normalized-values.png │ │ │ ├── type=matrix-with-non-normalized-values.svg │ │ │ ├── type=matrix-with-not-enough-values.png │ │ │ ├── type=matrix-with-not-enough-values.svg │ │ │ ├── type=matrix-with-too-many-values.png │ │ │ ├── type=matrix-with-too-many-values.svg │ │ │ ├── type=matrix-without-values.png │ │ │ ├── type=matrix-without-values.svg │ │ │ ├── type=matrix.png │ │ │ ├── type=matrix.svg │ │ │ ├── type=saturate-with-a-large-coefficient.png │ │ │ ├── type=saturate-with-a-large-coefficient.svg │ │ │ ├── type=saturate-with-negative-coefficient.png │ │ │ ├── type=saturate-with-negative-coefficient.svg │ │ │ ├── type=saturate-without-a-coefficient.png │ │ │ ├── type=saturate-without-a-coefficient.svg │ │ │ ├── type=saturate.png │ │ │ ├── type=saturate.svg │ │ │ ├── without-a-type.png │ │ │ ├── without-a-type.svg │ │ │ ├── without-attributes.png │ │ │ └── without-attributes.svg │ │ ├── feComponentTransfer │ │ │ ├── invalid-type.png │ │ │ ├── invalid-type.svg │ │ │ ├── mixed-types.png │ │ │ ├── mixed-types.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── type=discrete-on-blue.png │ │ │ ├── type=discrete-on-blue.svg │ │ │ ├── type=gamma-on-blue.png │ │ │ ├── type=gamma-on-blue.svg │ │ │ ├── type=gamma-with-an-invalid-offset.png │ │ │ ├── type=gamma-with-an-invalid-offset.svg │ │ │ ├── type=gamma-with-invalid-values.png │ │ │ ├── type=gamma-with-invalid-values.svg │ │ │ ├── type=identity-on-all.png │ │ │ ├── type=identity-on-all.svg │ │ │ ├── type=linear-on-blue.png │ │ │ ├── type=linear-on-blue.svg │ │ │ ├── type=linear-with-invalid-values.png │ │ │ ├── type=linear-with-invalid-values.svg │ │ │ ├── type=linear-with-large-values.png │ │ │ ├── type=linear-with-large-values.svg │ │ │ ├── type=table-and-tableValues=1-0-1.png │ │ │ ├── type=table-and-tableValues=1-0-1.svg │ │ │ ├── type=table-and-tableValues=1.png │ │ │ ├── type=table-and-tableValues=1.svg │ │ │ ├── type=table-and-tableValues=100--100.png │ │ │ ├── type=table-and-tableValues=100--100.svg │ │ │ ├── type=table-and-tableValues=1px.png │ │ │ ├── type=table-and-tableValues=1px.svg │ │ │ ├── type=table-on-alpha.png │ │ │ ├── type=table-on-alpha.svg │ │ │ ├── type=table-on-blue-twice.png │ │ │ ├── type=table-on-blue-twice.svg │ │ │ ├── type=table-on-blue-with-sRGB-interpolation.png │ │ │ ├── type=table-on-blue-with-sRGB-interpolation.svg │ │ │ ├── type=table-on-blue.png │ │ │ ├── type=table-on-blue.svg │ │ │ ├── type=table-with-an-empty-tableValues.png │ │ │ ├── type=table-with-an-empty-tableValues.svg │ │ │ ├── type=table-with-large-values.png │ │ │ ├── type=table-with-large-values.svg │ │ │ ├── type=table-without-tableValues.png │ │ │ └── type=table-without-tableValues.svg │ │ ├── feComposite │ │ │ ├── default-operator.png │ │ │ ├── default-operator.svg │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── invalid-operator.png │ │ │ ├── invalid-operator.svg │ │ │ ├── operator=arithmetic-and-invalid-k1-4.png │ │ │ ├── operator=arithmetic-and-invalid-k1-4.svg │ │ │ ├── operator=arithmetic-on-sRGB.png │ │ │ ├── operator=arithmetic-on-sRGB.svg │ │ │ ├── operator=arithmetic-with-large-k1-4.png │ │ │ ├── operator=arithmetic-with-large-k1-4.svg │ │ │ ├── operator=arithmetic-with-opacity-on-sRGB.png │ │ │ ├── operator=arithmetic-with-opacity-on-sRGB.svg │ │ │ ├── operator=arithmetic-with-opacity.png │ │ │ ├── operator=arithmetic-with-opacity.svg │ │ │ ├── operator=arithmetic-with-some-k1-4.png │ │ │ ├── operator=arithmetic-with-some-k1-4.svg │ │ │ ├── operator=arithmetic-without-k1-4.png │ │ │ ├── operator=arithmetic-without-k1-4.svg │ │ │ ├── operator=arithmetic.png │ │ │ ├── operator=arithmetic.svg │ │ │ ├── operator=atop.png │ │ │ ├── operator=atop.svg │ │ │ ├── operator=in.png │ │ │ ├── operator=in.svg │ │ │ ├── operator=out.png │ │ │ ├── operator=out.svg │ │ │ ├── operator=over.png │ │ │ ├── operator=over.svg │ │ │ ├── operator=xor.png │ │ │ ├── operator=xor.svg │ │ │ ├── with-subregion-on-input-1.png │ │ │ ├── with-subregion-on-input-1.svg │ │ │ ├── with-subregion-on-input-2.png │ │ │ └── with-subregion-on-input-2.svg │ │ ├── feConvolveMatrix │ │ │ ├── bias=-0.5.png │ │ │ ├── bias=-0.5.svg │ │ │ ├── bias=0.5.png │ │ │ ├── bias=0.5.svg │ │ │ ├── bias=9999.png │ │ │ ├── bias=9999.svg │ │ │ ├── custom-divisor.png │ │ │ ├── custom-divisor.svg │ │ │ ├── divisor=0.png │ │ │ ├── divisor=0.svg │ │ │ ├── edgeMode=none.png │ │ │ ├── edgeMode=none.svg │ │ │ ├── edgeMode=wrap-with-matrix-larger-than-target.png │ │ │ ├── edgeMode=wrap-with-matrix-larger-than-target.svg │ │ │ ├── edgeMode=wrap.png │ │ │ ├── edgeMode=wrap.svg │ │ │ ├── empty-kernelMatrix.png │ │ │ ├── empty-kernelMatrix.svg │ │ │ ├── kernelMatrix-with-not-enough-values.png │ │ │ ├── kernelMatrix-with-not-enough-values.svg │ │ │ ├── kernelMatrix-with-too-many-values.png │ │ │ ├── kernelMatrix-with-too-many-values.svg │ │ │ ├── kernelMatrix-with-zero-sum-and-no-divisor.png │ │ │ ├── kernelMatrix-with-zero-sum-and-no-divisor.svg │ │ │ ├── no-kernelMatrix.png │ │ │ ├── no-kernelMatrix.svg │ │ │ ├── order-with-a-negative-value-1.png │ │ │ ├── order-with-a-negative-value-1.svg │ │ │ ├── order-with-a-negative-value-2.png │ │ │ ├── order-with-a-negative-value-2.svg │ │ │ ├── order=0.png │ │ │ ├── order=0.svg │ │ │ ├── order=4-2.png │ │ │ ├── order=4-2.svg │ │ │ ├── order=4-4.png │ │ │ ├── order=4-4.svg │ │ │ ├── order=4.png │ │ │ ├── order=4.svg │ │ │ ├── preserveAlpha=true.png │ │ │ ├── preserveAlpha=true.svg │ │ │ ├── targetX=-1.png │ │ │ ├── targetX=-1.svg │ │ │ ├── targetX=0.png │ │ │ ├── targetX=0.svg │ │ │ ├── targetX=2.png │ │ │ ├── targetX=2.svg │ │ │ ├── targetX=3.png │ │ │ ├── targetX=3.svg │ │ │ ├── unset-order.png │ │ │ └── unset-order.svg │ │ ├── feDiffuseLighting │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── diffuseConstant=-1.png │ │ │ ├── diffuseConstant=-1.svg │ │ │ ├── diffuseConstant=0.png │ │ │ ├── diffuseConstant=0.svg │ │ │ ├── diffuseConstant=5.png │ │ │ ├── diffuseConstant=5.svg │ │ │ ├── lighting-color=currentColor-without-color.png │ │ │ ├── lighting-color=currentColor-without-color.svg │ │ │ ├── lighting-color=currentColor.png │ │ │ ├── lighting-color=currentColor.svg │ │ │ ├── lighting-color=hsla.png │ │ │ ├── lighting-color=hsla.svg │ │ │ ├── lighting-color=inherit.png │ │ │ ├── lighting-color=inherit.svg │ │ │ ├── lighting-color=seagreen.png │ │ │ ├── lighting-color=seagreen.svg │ │ │ ├── linearRGB-color-interpolation.png │ │ │ ├── linearRGB-color-interpolation.svg │ │ │ ├── multiple-light-sources.png │ │ │ ├── multiple-light-sources.svg │ │ │ ├── no-light-source.png │ │ │ ├── no-light-source.svg │ │ │ ├── single-light-source-with-comment.png │ │ │ ├── single-light-source-with-comment.svg │ │ │ ├── single-light-source-with-desc.png │ │ │ ├── single-light-source-with-desc.svg │ │ │ ├── single-light-source-with-invalid-child.png │ │ │ ├── single-light-source-with-invalid-child.svg │ │ │ ├── single-light-source-with-title-and-desc.png │ │ │ ├── single-light-source-with-title-and-desc.svg │ │ │ ├── single-light-source-with-title.png │ │ │ ├── single-light-source-with-title.svg │ │ │ ├── single-light-source.png │ │ │ ├── single-light-source.svg │ │ │ ├── surfaceScale=-10.png │ │ │ ├── surfaceScale=-10.svg │ │ │ ├── surfaceScale=0.png │ │ │ ├── surfaceScale=0.svg │ │ │ ├── surfaceScale=1.33.png │ │ │ ├── surfaceScale=1.33.svg │ │ │ ├── surfaceScale=5.png │ │ │ └── surfaceScale=5.svg │ │ ├── feDisplacementMap │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── feDistantLight │ │ │ ├── default-attributes.png │ │ │ ├── default-attributes.svg │ │ │ ├── negative-azimuth-and-elevation.png │ │ │ ├── negative-azimuth-and-elevation.svg │ │ │ ├── only-azimuth.png │ │ │ ├── only-azimuth.svg │ │ │ ├── only-elevation.png │ │ │ └── only-elevation.svg │ │ ├── feDropShadow │ │ │ ├── hsla-color.png │ │ │ ├── hsla-color.svg │ │ │ ├── only-stdDeviation.png │ │ │ ├── only-stdDeviation.svg │ │ │ ├── stdDeviation=0.png │ │ │ ├── stdDeviation=0.svg │ │ │ ├── with-flood-color.png │ │ │ ├── with-flood-color.svg │ │ │ ├── with-flood-opacity.png │ │ │ ├── with-flood-opacity.svg │ │ │ ├── with-offset-clipped.png │ │ │ ├── with-offset-clipped.svg │ │ │ ├── with-offset.png │ │ │ ├── with-offset.svg │ │ │ ├── with-percent-offset.png │ │ │ └── with-percent-offset.svg │ │ ├── feFlood │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── default-values.png │ │ │ ├── default-values.svg │ │ │ ├── partial-subregion.png │ │ │ ├── partial-subregion.svg │ │ │ ├── seagreen.png │ │ │ ├── seagreen.svg │ │ │ ├── subregion-inheritance.png │ │ │ ├── subregion-inheritance.svg │ │ │ ├── subregion-with-primitiveUnits=objectBoundingBox.png │ │ │ ├── subregion-with-primitiveUnits=objectBoundingBox.svg │ │ │ ├── with-opacity-on-target-element.png │ │ │ ├── with-opacity-on-target-element.svg │ │ │ ├── with-opacity.png │ │ │ └── with-opacity.svg │ │ ├── feGaussianBlur │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── empty-stdDeviation.png │ │ │ ├── empty-stdDeviation.svg │ │ │ ├── huge-stdDeviation.png │ │ │ ├── huge-stdDeviation.svg │ │ │ ├── negative-stdDeviation.png │ │ │ ├── negative-stdDeviation.svg │ │ │ ├── no-stdDeviation.png │ │ │ ├── no-stdDeviation.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── small-stdDeviation.png │ │ │ ├── small-stdDeviation.svg │ │ │ ├── stdDeviation-with-multiple-values.png │ │ │ ├── stdDeviation-with-multiple-values.svg │ │ │ ├── stdDeviation-with-two-different-values.png │ │ │ ├── stdDeviation-with-two-different-values.svg │ │ │ ├── stdDeviation-with-two-values.png │ │ │ ├── stdDeviation-with-two-values.svg │ │ │ ├── stdDeviation=0-5.png │ │ │ ├── stdDeviation=0-5.svg │ │ │ ├── stdDeviation=5-0.png │ │ │ ├── stdDeviation=5-0.svg │ │ │ ├── tiny-stdDeviation.png │ │ │ └── tiny-stdDeviation.svg │ │ ├── feImage │ │ │ ├── chained-feImage.png │ │ │ ├── chained-feImage.svg │ │ │ ├── embedded-png.png │ │ │ ├── embedded-png.svg │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── link-on-an-element-with-complex-transform.png │ │ │ ├── link-on-an-element-with-complex-transform.svg │ │ │ ├── link-on-an-element-with-transform.png │ │ │ ├── link-on-an-element-with-transform.svg │ │ │ ├── link-to-an-element-outside-defs-1.png │ │ │ ├── link-to-an-element-outside-defs-1.svg │ │ │ ├── link-to-an-element-outside-defs-2.png │ │ │ ├── link-to-an-element-outside-defs-2.svg │ │ │ ├── link-to-an-element-with-opacity.png │ │ │ ├── link-to-an-element-with-opacity.svg │ │ │ ├── link-to-an-element-with-transform.png │ │ │ ├── link-to-an-element-with-transform.svg │ │ │ ├── link-to-an-element.png │ │ │ ├── link-to-an-element.svg │ │ │ ├── link-to-an-invalid-element.png │ │ │ ├── link-to-an-invalid-element.svg │ │ │ ├── link-to-g.png │ │ │ ├── link-to-g.svg │ │ │ ├── link-to-use.png │ │ │ ├── link-to-use.svg │ │ │ ├── preserveAspectRatio=none.png │ │ │ ├── preserveAspectRatio=none.svg │ │ │ ├── recursive-links-1.png │ │ │ ├── recursive-links-1.svg │ │ │ ├── recursive-links-2.png │ │ │ ├── recursive-links-2.svg │ │ │ ├── self-recursive.png │ │ │ ├── self-recursive.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── svg.png │ │ │ ├── svg.svg │ │ │ ├── with-subregion-1.png │ │ │ ├── with-subregion-1.svg │ │ │ ├── with-subregion-2.png │ │ │ ├── with-subregion-2.svg │ │ │ ├── with-subregion-3.png │ │ │ ├── with-subregion-3.svg │ │ │ ├── with-subregion-4.png │ │ │ ├── with-subregion-4.svg │ │ │ ├── with-subregion-5.png │ │ │ ├── with-subregion-5.svg │ │ │ ├── with-x-y-and-protruding-subregion-1.png │ │ │ ├── with-x-y-and-protruding-subregion-1.svg │ │ │ ├── with-x-y-and-protruding-subregion-2.png │ │ │ ├── with-x-y-and-protruding-subregion-2.svg │ │ │ ├── with-x-y.png │ │ │ └── with-x-y.svg │ │ ├── feMerge │ │ │ ├── color-interpolation-filters=linearRGB.png │ │ │ ├── color-interpolation-filters=linearRGB.svg │ │ │ ├── color-interpolation-filters=sRGB.png │ │ │ ├── color-interpolation-filters=sRGB.svg │ │ │ ├── complex-transform.png │ │ │ └── complex-transform.svg │ │ ├── feMorphology │ │ │ ├── empty-radius.png │ │ │ ├── empty-radius.svg │ │ │ ├── huge-radius.png │ │ │ ├── huge-radius.svg │ │ │ ├── negative-radius.png │ │ │ ├── negative-radius.svg │ │ │ ├── no-radius.png │ │ │ ├── no-radius.svg │ │ │ ├── operator=dilate.png │ │ │ ├── operator=dilate.svg │ │ │ ├── radius-with-too-many-values.png │ │ │ ├── radius-with-too-many-values.svg │ │ │ ├── radius=0.5-with-objectBoundingBox.png │ │ │ ├── radius=0.5-with-objectBoundingBox.svg │ │ │ ├── radius=0.5.png │ │ │ ├── radius=0.5.svg │ │ │ ├── radius=1-10.png │ │ │ ├── radius=1-10.svg │ │ │ ├── radius=10-0.png │ │ │ ├── radius=10-0.svg │ │ │ ├── radius=10-1.png │ │ │ ├── radius=10-1.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── source-with-opacity.png │ │ │ ├── source-with-opacity.svg │ │ │ ├── zero-radius.png │ │ │ └── zero-radius.svg │ │ ├── feOffset │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── fractional-offset.png │ │ │ ├── fractional-offset.svg │ │ │ ├── negative-offset.png │ │ │ ├── negative-offset.svg │ │ │ ├── no-offset.png │ │ │ ├── no-offset.svg │ │ │ ├── only-dx.png │ │ │ ├── only-dx.svg │ │ │ ├── only-dy.png │ │ │ ├── only-dy.svg │ │ │ ├── percentage-values.png │ │ │ ├── percentage-values.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── with-primitiveUnits=objectBoundingBox.png │ │ │ └── with-primitiveUnits=objectBoundingBox.svg │ │ ├── fePointLight │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── custom-attributes.png │ │ │ ├── custom-attributes.svg │ │ │ ├── default-attributes.png │ │ │ ├── default-attributes.svg │ │ │ ├── primitiveUnits=objectBoundingBox.png │ │ │ └── primitiveUnits=objectBoundingBox.svg │ │ ├── feSpecularLighting │ │ │ ├── lighting-color=hsla.png │ │ │ ├── lighting-color=hsla.svg │ │ │ ├── specularExponent=0.png │ │ │ ├── specularExponent=0.svg │ │ │ ├── specularExponent=256.png │ │ │ ├── specularExponent=256.svg │ │ │ ├── with-feDistantLight.png │ │ │ ├── with-feDistantLight.svg │ │ │ ├── with-fePointLight.png │ │ │ ├── with-fePointLight.svg │ │ │ ├── with-feSpotLight-and-specular-and-exponent.png │ │ │ ├── with-feSpotLight-and-specular-and-exponent.svg │ │ │ ├── with-feSpotLight-and-specularConstant=5.png │ │ │ ├── with-feSpotLight-and-specularConstant=5.svg │ │ │ ├── with-feSpotLight.png │ │ │ └── with-feSpotLight.svg │ │ ├── feSpotLight │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── custom-attributes.png │ │ │ ├── custom-attributes.svg │ │ │ ├── default-attributes.png │ │ │ ├── default-attributes.svg │ │ │ ├── limitingConeAngle-anti-aliasing.png │ │ │ ├── limitingConeAngle-anti-aliasing.svg │ │ │ ├── limitingConeAngle=-30.png │ │ │ ├── limitingConeAngle=-30.svg │ │ │ ├── limitingConeAngle=0.png │ │ │ ├── limitingConeAngle=0.svg │ │ │ ├── limitingConeAngle=30.png │ │ │ ├── limitingConeAngle=30.svg │ │ │ ├── primitiveUnits=objectBoundingBox.png │ │ │ ├── primitiveUnits=objectBoundingBox.svg │ │ │ ├── specularExponent=-10.png │ │ │ ├── specularExponent=-10.svg │ │ │ ├── specularExponent=0.5.png │ │ │ ├── specularExponent=0.5.svg │ │ │ ├── specularExponent=10.png │ │ │ ├── specularExponent=10.svg │ │ │ ├── with-all-pointsAt.png │ │ │ └── with-all-pointsAt.svg │ │ ├── feTile │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── empty-region.png │ │ │ ├── empty-region.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── with-region.png │ │ │ ├── with-region.svg │ │ │ ├── with-subregion-1.png │ │ │ ├── with-subregion-1.svg │ │ │ ├── with-subregion-2.png │ │ │ ├── with-subregion-2.svg │ │ │ ├── with-subregion-3.png │ │ │ └── with-subregion-3.svg │ │ ├── feTurbulence │ │ │ ├── baseFrequency=-0.05.png │ │ │ ├── baseFrequency=-0.05.svg │ │ │ ├── baseFrequency=0.01.png │ │ │ ├── baseFrequency=0.01.svg │ │ │ ├── baseFrequency=0.05--0.01.png │ │ │ ├── baseFrequency=0.05--0.01.svg │ │ │ ├── baseFrequency=0.05-0.01.png │ │ │ ├── baseFrequency=0.05-0.01.svg │ │ │ ├── baseFrequency=0.05-0.05.png │ │ │ ├── baseFrequency=0.05-0.05.svg │ │ │ ├── baseFrequency=0.05-0.png │ │ │ ├── baseFrequency=0.05-0.svg │ │ │ ├── color-interpolation-filters=sRGB.png │ │ │ ├── color-interpolation-filters=sRGB.svg │ │ │ ├── complex-transform.png │ │ │ ├── complex-transform.svg │ │ │ ├── no-attributes.png │ │ │ ├── no-attributes.svg │ │ │ ├── numOctaves=-1.png │ │ │ ├── numOctaves=-1.svg │ │ │ ├── numOctaves=0.png │ │ │ ├── numOctaves=0.svg │ │ │ ├── numOctaves=5.png │ │ │ ├── numOctaves=5.svg │ │ │ ├── primitiveUnits=objectBoundingBox.png │ │ │ ├── primitiveUnits=objectBoundingBox.svg │ │ │ ├── seed=-20.png │ │ │ ├── seed=-20.svg │ │ │ ├── seed=1.5.png │ │ │ ├── seed=1.5.svg │ │ │ ├── seed=20.png │ │ │ ├── seed=20.svg │ │ │ ├── stitchTiles=stitch.png │ │ │ ├── stitchTiles=stitch.svg │ │ │ ├── type=fractalNoise.png │ │ │ ├── type=fractalNoise.svg │ │ │ ├── type=invalid.png │ │ │ └── type=invalid.svg │ │ ├── filter-functions │ │ │ ├── blur-function-mm-value.png │ │ │ ├── blur-function-mm-value.svg │ │ │ ├── blur-function-negative-value.png │ │ │ ├── blur-function-negative-value.svg │ │ │ ├── blur-function-no-values.png │ │ │ ├── blur-function-no-values.svg │ │ │ ├── blur-function-percent-value.png │ │ │ ├── blur-function-percent-value.svg │ │ │ ├── blur-function-two-values.png │ │ │ ├── blur-function-two-values.svg │ │ │ ├── blur-function.png │ │ │ ├── blur-function.svg │ │ │ ├── color-adjust-functions-0percent.png │ │ │ ├── color-adjust-functions-0percent.svg │ │ │ ├── color-adjust-functions-100percent.png │ │ │ ├── color-adjust-functions-100percent.svg │ │ │ ├── color-adjust-functions-2.png │ │ │ ├── color-adjust-functions-2.svg │ │ │ ├── color-adjust-functions-200percent.png │ │ │ ├── color-adjust-functions-200percent.svg │ │ │ ├── color-adjust-functions-50percent.png │ │ │ ├── color-adjust-functions-50percent.svg │ │ │ ├── color-adjust-functions-default-value.png │ │ │ ├── color-adjust-functions-default-value.svg │ │ │ ├── color-adjust-functions-negative.png │ │ │ ├── color-adjust-functions-negative.svg │ │ │ ├── drop-shadow-function-color-as-attribute.png │ │ │ ├── drop-shadow-function-color-as-attribute.svg │ │ │ ├── drop-shadow-function-color-last.png │ │ │ ├── drop-shadow-function-color-last.svg │ │ │ ├── drop-shadow-function-comma-separated.png │ │ │ ├── drop-shadow-function-comma-separated.svg │ │ │ ├── drop-shadow-function-currentColor.png │ │ │ ├── drop-shadow-function-currentColor.svg │ │ │ ├── drop-shadow-function-em-values.png │ │ │ ├── drop-shadow-function-em-values.svg │ │ │ ├── drop-shadow-function-extra-value.png │ │ │ ├── drop-shadow-function-extra-value.svg │ │ │ ├── drop-shadow-function-filter-region.png │ │ │ ├── drop-shadow-function-filter-region.svg │ │ │ ├── drop-shadow-function-mm-values.png │ │ │ ├── drop-shadow-function-mm-values.svg │ │ │ ├── drop-shadow-function-no-color.png │ │ │ ├── drop-shadow-function-no-color.svg │ │ │ ├── drop-shadow-function-no-values.png │ │ │ ├── drop-shadow-function-no-values.svg │ │ │ ├── drop-shadow-function-only-X-offset.png │ │ │ ├── drop-shadow-function-only-X-offset.svg │ │ │ ├── drop-shadow-function-only-offset.png │ │ │ ├── drop-shadow-function-only-offset.svg │ │ │ ├── drop-shadow-function-percent-values.png │ │ │ ├── drop-shadow-function-percent-values.svg │ │ │ ├── drop-shadow-function.png │ │ │ ├── drop-shadow-function.svg │ │ │ ├── grayscale-and-opacity.png │ │ │ ├── grayscale-and-opacity.svg │ │ │ ├── hue-rotate-function-0.25turn.png │ │ │ ├── hue-rotate-function-0.25turn.svg │ │ │ ├── hue-rotate-function-45.png │ │ │ ├── hue-rotate-function-45.svg │ │ │ ├── hue-rotate-function-45deg.png │ │ │ ├── hue-rotate-function-45deg.svg │ │ │ ├── hue-rotate-function-45grad.png │ │ │ ├── hue-rotate-function-45grad.svg │ │ │ ├── hue-rotate-function-45rad.png │ │ │ ├── hue-rotate-function-45rad.svg │ │ │ ├── hue-rotate-function-999deg.png │ │ │ ├── hue-rotate-function-999deg.svg │ │ │ ├── hue-rotate-function-default-value.png │ │ │ ├── hue-rotate-function-default-value.svg │ │ │ ├── hue-rotate-function-zero.png │ │ │ ├── hue-rotate-function-zero.svg │ │ │ ├── nested-filters.png │ │ │ ├── nested-filters.svg │ │ │ ├── one-invalid-function-in-list.png │ │ │ ├── one-invalid-function-in-list.svg │ │ │ ├── one-invalid-url-in-list.png │ │ │ ├── one-invalid-url-in-list.svg │ │ │ ├── two-drop-shadow-function.png │ │ │ ├── two-drop-shadow-function.svg │ │ │ ├── two-exact-urls.png │ │ │ ├── two-exact-urls.svg │ │ │ ├── two-urls.png │ │ │ ├── two-urls.svg │ │ │ ├── url-and-grayscale.png │ │ │ └── url-and-grayscale.svg │ │ ├── filter │ │ │ ├── color-interpolation-filters=sRGB.png │ │ │ ├── color-interpolation-filters=sRGB.svg │ │ │ ├── complex-order-and-xlink-href.png │ │ │ ├── complex-order-and-xlink-href.svg │ │ │ ├── content-outside-the-canvas-2.png │ │ │ ├── content-outside-the-canvas-2.svg │ │ │ ├── content-outside-the-canvas.png │ │ │ ├── content-outside-the-canvas.svg │ │ │ ├── default-color-interpolation-filters.png │ │ │ ├── default-color-interpolation-filters.svg │ │ │ ├── everything-via-xlink-href.png │ │ │ ├── everything-via-xlink-href.svg │ │ │ ├── global-transform.png │ │ │ ├── global-transform.svg │ │ │ ├── huge-region.png │ │ │ ├── huge-region.svg │ │ │ ├── in-to-invalid-1.png │ │ │ ├── in-to-invalid-1.svg │ │ │ ├── in-to-invalid-2.png │ │ │ ├── in-to-invalid-2.svg │ │ │ ├── in=BackgroundAlpha-with-enable-background.png │ │ │ ├── in=BackgroundAlpha-with-enable-background.svg │ │ │ ├── in=BackgroundAlpha.png │ │ │ ├── in=BackgroundAlpha.svg │ │ │ ├── in=BackgroundImage-with-enable-background.png │ │ │ ├── in=BackgroundImage-with-enable-background.svg │ │ │ ├── in=BackgroundImage.png │ │ │ ├── in=BackgroundImage.svg │ │ │ ├── in=FillPaint-on-g-without-children.png │ │ │ ├── in=FillPaint-on-g-without-children.svg │ │ │ ├── in=FillPaint-with-gradient.png │ │ │ ├── in=FillPaint-with-gradient.svg │ │ │ ├── in=FillPaint-with-pattern.png │ │ │ ├── in=FillPaint-with-pattern.svg │ │ │ ├── in=FillPaint-with-target-on-g.png │ │ │ ├── in=FillPaint-with-target-on-g.svg │ │ │ ├── in=FillPaint.png │ │ │ ├── in=FillPaint.svg │ │ │ ├── in=SourceAlpha.png │ │ │ ├── in=SourceAlpha.svg │ │ │ ├── in=StrokePaint.png │ │ │ ├── in=StrokePaint.svg │ │ │ ├── initial-transform.png │ │ │ ├── initial-transform.svg │ │ │ ├── invalid-FuncIRI.png │ │ │ ├── invalid-FuncIRI.svg │ │ │ ├── invalid-filterUnits.png │ │ │ ├── invalid-filterUnits.svg │ │ │ ├── invalid-primitive-1.png │ │ │ ├── invalid-primitive-1.svg │ │ │ ├── invalid-primitive-2.png │ │ │ ├── invalid-primitive-2.svg │ │ │ ├── invalid-region.png │ │ │ ├── invalid-region.svg │ │ │ ├── invalid-subregion.png │ │ │ ├── invalid-subregion.svg │ │ │ ├── invalid-xlink-href.png │ │ │ ├── invalid-xlink-href.svg │ │ │ ├── multiple-primitives-1.png │ │ │ ├── multiple-primitives-1.svg │ │ │ ├── multiple-primitives-2.png │ │ │ ├── multiple-primitives-2.svg │ │ │ ├── multiple-primitives-3.png │ │ │ ├── multiple-primitives-3.svg │ │ │ ├── multiple-primitives-4.png │ │ │ ├── multiple-primitives-4.svg │ │ │ ├── negative-subregion.png │ │ │ ├── negative-subregion.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── on-a-thin-rect.png │ │ │ ├── on-a-thin-rect.svg │ │ │ ├── on-a-vertical-line.png │ │ │ ├── on-a-vertical-line.svg │ │ │ ├── on-an-empty-group-1.png │ │ │ ├── on-an-empty-group-1.svg │ │ │ ├── on-an-empty-group-2.png │ │ │ ├── on-an-empty-group-2.svg │ │ │ ├── on-group-with-child-outside-of-canvas.png │ │ │ ├── on-group-with-child-outside-of-canvas.svg │ │ │ ├── on-the-root-svg.png │ │ │ ├── on-the-root-svg.svg │ │ │ ├── on-zero-sized-shape.png │ │ │ ├── on-zero-sized-shape.svg │ │ │ ├── path-bbox.png │ │ │ ├── path-bbox.svg │ │ │ ├── primitiveUnits=objectBoundingBox.png │ │ │ ├── primitiveUnits=objectBoundingBox.svg │ │ │ ├── recursive-xlink-href.png │ │ │ ├── recursive-xlink-href.svg │ │ │ ├── region-with-stroke.png │ │ │ ├── region-with-stroke.svg │ │ │ ├── self-recursive-xlink-href.png │ │ │ ├── self-recursive-xlink-href.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── some-attributes-via-xlink-href.png │ │ │ ├── some-attributes-via-xlink-href.svg │ │ │ ├── subregion-and-primitiveUnits=objectBoundingBox-1.png │ │ │ ├── subregion-and-primitiveUnits=objectBoundingBox-1.svg │ │ │ ├── subregion-and-primitiveUnits=objectBoundingBox-2.png │ │ │ ├── subregion-and-primitiveUnits=objectBoundingBox-2.svg │ │ │ ├── subregion-bigger-that-region.png │ │ │ ├── subregion-bigger-that-region.svg │ │ │ ├── transform-on-filter.png │ │ │ ├── transform-on-filter.svg │ │ │ ├── transform-on-shape-with-filter-region.png │ │ │ ├── transform-on-shape-with-filter-region.svg │ │ │ ├── transform-on-shape.png │ │ │ ├── transform-on-shape.svg │ │ │ ├── unresolved-xlink-href.png │ │ │ ├── unresolved-xlink-href.svg │ │ │ ├── with-clip-path-and-mask.png │ │ │ ├── with-clip-path-and-mask.svg │ │ │ ├── with-clip-path.png │ │ │ ├── with-clip-path.svg │ │ │ ├── with-mask-on-parent.png │ │ │ ├── with-mask-on-parent.svg │ │ │ ├── with-mask.png │ │ │ ├── with-mask.svg │ │ │ ├── with-multiple-transforms-1.png │ │ │ ├── with-multiple-transforms-1.svg │ │ │ ├── with-multiple-transforms-2.png │ │ │ ├── with-multiple-transforms-2.svg │ │ │ ├── with-region-and-filterUnits=userSpaceOnUse.png │ │ │ ├── with-region-and-filterUnits=userSpaceOnUse.svg │ │ │ ├── with-region-and-subregion.png │ │ │ ├── with-region-and-subregion.svg │ │ │ ├── with-region-outside-the-canvas.png │ │ │ ├── with-region-outside-the-canvas.svg │ │ │ ├── with-region-outside-the-viewbox.png │ │ │ ├── with-region-outside-the-viewbox.svg │ │ │ ├── with-region.png │ │ │ ├── with-region.svg │ │ │ ├── with-subregion-1.png │ │ │ ├── with-subregion-1.svg │ │ │ ├── with-subregion-2.png │ │ │ ├── with-subregion-2.svg │ │ │ ├── with-subregion-3.png │ │ │ ├── with-subregion-3.svg │ │ │ ├── with-transform-outside-of-canvas.png │ │ │ ├── with-transform-outside-of-canvas.svg │ │ │ ├── without-region-and-filterUnits=userSpaceOnUse.png │ │ │ ├── without-region-and-filterUnits=userSpaceOnUse.svg │ │ │ ├── zero-sized-subregion.png │ │ │ └── zero-sized-subregion.svg │ │ ├── flood-color │ │ │ ├── hsla-color.png │ │ │ ├── hsla-color.svg │ │ │ ├── inheritance-1.png │ │ │ ├── inheritance-1.svg │ │ │ ├── inheritance-2.png │ │ │ ├── inheritance-2.svg │ │ │ ├── inheritance-3.png │ │ │ ├── inheritance-3.svg │ │ │ ├── inheritance-4.png │ │ │ ├── inheritance-4.svg │ │ │ ├── inheritance-5.png │ │ │ ├── inheritance-5.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ └── flood-opacity │ │ │ ├── 50percent.png │ │ │ ├── 50percent.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── masking │ │ ├── clip-rule │ │ │ ├── clip-rule=evenodd.png │ │ │ └── clip-rule=evenodd.svg │ │ ├── clip │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── clipPath │ │ │ ├── circle-shorthand-with-stroke-box.png │ │ │ ├── circle-shorthand-with-stroke-box.svg │ │ │ ├── circle-shorthand-with-view-box.png │ │ │ ├── circle-shorthand-with-view-box.svg │ │ │ ├── circle-shorthand.png │ │ │ ├── circle-shorthand.svg │ │ │ ├── clip-path-on-child-with-transform.png │ │ │ ├── clip-path-on-child-with-transform.svg │ │ │ ├── clip-path-on-child.png │ │ │ ├── clip-path-on-child.svg │ │ │ ├── clip-path-on-children.png │ │ │ ├── clip-path-on-children.svg │ │ │ ├── clip-path-on-self-2.png │ │ │ ├── clip-path-on-self-2.svg │ │ │ ├── clip-path-on-self.png │ │ │ ├── clip-path-on-self.svg │ │ │ ├── clip-path-with-transform-on-text.png │ │ │ ├── clip-path-with-transform-on-text.svg │ │ │ ├── clip-path-with-transform.png │ │ │ ├── clip-path-with-transform.svg │ │ │ ├── clip-rule-from-parent-node.png │ │ │ ├── clip-rule-from-parent-node.svg │ │ │ ├── clip-rule=evenodd.png │ │ │ ├── clip-rule=evenodd.svg │ │ │ ├── clipPathUnits=objectBoundingBox.png │ │ │ ├── clipPathUnits=objectBoundingBox.svg │ │ │ ├── clipping-with-complex-text-1.png │ │ │ ├── clipping-with-complex-text-1.svg │ │ │ ├── clipping-with-complex-text-2.png │ │ │ ├── clipping-with-complex-text-2.svg │ │ │ ├── clipping-with-complex-text-and-clip-rule.png │ │ │ ├── clipping-with-complex-text-and-clip-rule.svg │ │ │ ├── clipping-with-text.png │ │ │ ├── clipping-with-text.svg │ │ │ ├── fill-has-no-effect.png │ │ │ ├── fill-has-no-effect.svg │ │ │ ├── filter-has-no-effect.png │ │ │ ├── filter-has-no-effect.svg │ │ │ ├── g-is-not-a-valid-child.png │ │ │ ├── g-is-not-a-valid-child.svg │ │ │ ├── image-is-not-a-valid-child.png │ │ │ ├── image-is-not-a-valid-child.svg │ │ │ ├── invalid-FuncIRI.png │ │ │ ├── invalid-FuncIRI.svg │ │ │ ├── invalid-clip-path-on-child.png │ │ │ ├── invalid-clip-path-on-child.svg │ │ │ ├── invalid-clip-path-on-self.png │ │ │ ├── invalid-clip-path-on-self.svg │ │ │ ├── invalid-transform-on-clipPath.png │ │ │ ├── invalid-transform-on-clipPath.svg │ │ │ ├── invisible-child-1.png │ │ │ ├── invisible-child-1.svg │ │ │ ├── invisible-child-2.png │ │ │ ├── invisible-child-2.svg │ │ │ ├── line-is-not-a-valid-child.png │ │ │ ├── line-is-not-a-valid-child.svg │ │ │ ├── malformed-path-child.png │ │ │ ├── malformed-path-child.svg │ │ │ ├── mask-has-no-effect.png │ │ │ ├── mask-has-no-effect.svg │ │ │ ├── mixed-clip-rule.png │ │ │ ├── mixed-clip-rule.svg │ │ │ ├── multiple-children.png │ │ │ ├── multiple-children.svg │ │ │ ├── nested-clip-path.png │ │ │ ├── nested-clip-path.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── on-a-horizontal-line.png │ │ │ ├── on-a-horizontal-line.svg │ │ │ ├── on-the-root-svg-with-size.png │ │ │ ├── on-the-root-svg-with-size.svg │ │ │ ├── on-the-root-svg-without-size.png │ │ │ ├── on-the-root-svg-without-size.svg │ │ │ ├── opacity-has-no-effect.png │ │ │ ├── opacity-has-no-effect.svg │ │ │ ├── overlapped-shapes-with-evenodd.png │ │ │ ├── overlapped-shapes-with-evenodd.svg │ │ │ ├── recursive-on-child.png │ │ │ ├── recursive-on-child.svg │ │ │ ├── recursive-on-self.png │ │ │ ├── recursive-on-self.svg │ │ │ ├── recursive.png │ │ │ ├── recursive.svg │ │ │ ├── self-recursive.png │ │ │ ├── self-recursive.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── stroke-has-no-effect.png │ │ │ ├── stroke-has-no-effect.svg │ │ │ ├── switch-is-not-a-valid-child.png │ │ │ ├── switch-is-not-a-valid-child.svg │ │ │ ├── symbol-via-use-is-not-a-valid-child.png │ │ │ ├── symbol-via-use-is-not-a-valid-child.svg │ │ │ ├── transform-on-clipPath.png │ │ │ ├── transform-on-clipPath.svg │ │ │ ├── with-invalid-child-via-use.png │ │ │ ├── with-invalid-child-via-use.svg │ │ │ ├── with-marker-on-clip.png │ │ │ ├── with-marker-on-clip.svg │ │ │ ├── with-use-child.png │ │ │ └── with-use-child.svg │ │ └── mask │ │ │ ├── color-interpolation=linearRGB.png │ │ │ ├── color-interpolation=linearRGB.svg │ │ │ ├── half-width-region-with-rotation.png │ │ │ ├── half-width-region-with-rotation.svg │ │ │ ├── invalid-FuncIRI.png │ │ │ ├── invalid-FuncIRI.svg │ │ │ ├── invalid-child.png │ │ │ ├── invalid-child.svg │ │ │ ├── invisible-child-1.png │ │ │ ├── invisible-child-1.svg │ │ │ ├── invisible-child-2.png │ │ │ ├── invisible-child-2.svg │ │ │ ├── mask-on-child.png │ │ │ ├── mask-on-child.svg │ │ │ ├── mask-on-self-with-mask-type=alpha.png │ │ │ ├── mask-on-self-with-mask-type=alpha.svg │ │ │ ├── mask-on-self-with-mixed-mask-type.png │ │ │ ├── mask-on-self-with-mixed-mask-type.svg │ │ │ ├── mask-on-self.png │ │ │ ├── mask-on-self.svg │ │ │ ├── mask-type-in-style.png │ │ │ ├── mask-type-in-style.svg │ │ │ ├── mask-type=alpha.png │ │ │ ├── mask-type=alpha.svg │ │ │ ├── mask-type=invalid.png │ │ │ ├── mask-type=invalid.svg │ │ │ ├── mask-type=luminance.png │ │ │ ├── mask-type=luminance.svg │ │ │ ├── maskContentUnits=objectBoundingBox.png │ │ │ ├── maskContentUnits=objectBoundingBox.svg │ │ │ ├── maskUnits=objectBoundingBox-with-percent.png │ │ │ ├── maskUnits=objectBoundingBox-with-percent.svg │ │ │ ├── maskUnits=userSpaceOnUse-with-percent.png │ │ │ ├── maskUnits=userSpaceOnUse-with-percent.svg │ │ │ ├── maskUnits=userSpaceOnUse-with-rect.png │ │ │ ├── maskUnits=userSpaceOnUse-with-rect.svg │ │ │ ├── maskUnits=userSpaceOnUse-with-width-only.png │ │ │ ├── maskUnits=userSpaceOnUse-with-width-only.svg │ │ │ ├── maskUnits=userSpaceOnUse-without-rect.png │ │ │ ├── maskUnits=userSpaceOnUse-without-rect.svg │ │ │ ├── nested-objectBoundingBox.png │ │ │ ├── nested-objectBoundingBox.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── on-a-horizontal-line.png │ │ │ ├── on-a-horizontal-line.svg │ │ │ ├── on-a-small-object.png │ │ │ ├── on-a-small-object.svg │ │ │ ├── on-group-with-transform.png │ │ │ ├── on-group-with-transform.svg │ │ │ ├── recursive-on-child.png │ │ │ ├── recursive-on-child.svg │ │ │ ├── recursive-on-self.png │ │ │ ├── recursive-on-self.svg │ │ │ ├── recursive.png │ │ │ ├── recursive.svg │ │ │ ├── self-recursive.png │ │ │ ├── self-recursive.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── transform-has-no-effect.png │ │ │ ├── transform-has-no-effect.svg │ │ │ ├── transform-on-shape.png │ │ │ ├── transform-on-shape.svg │ │ │ ├── with-clip-path.png │ │ │ ├── with-clip-path.svg │ │ │ ├── with-grayscale-image.png │ │ │ ├── with-grayscale-image.svg │ │ │ ├── with-image.png │ │ │ ├── with-image.svg │ │ │ ├── with-opacity-1.png │ │ │ ├── with-opacity-1.svg │ │ │ ├── with-opacity-2.png │ │ │ ├── with-opacity-2.svg │ │ │ ├── with-opacity-3.png │ │ │ └── with-opacity-3.svg │ │ ├── paint-servers │ │ ├── linearGradient │ │ │ ├── attributes-via-xlink-href-complex-order.png │ │ │ ├── attributes-via-xlink-href-complex-order.svg │ │ │ ├── attributes-via-xlink-href-from-radialGradient.png │ │ │ ├── attributes-via-xlink-href-from-radialGradient.svg │ │ │ ├── attributes-via-xlink-href-from-rect.png │ │ │ ├── attributes-via-xlink-href-from-rect.svg │ │ │ ├── attributes-via-xlink-href-only-required.png │ │ │ ├── attributes-via-xlink-href-only-required.svg │ │ │ ├── attributes-via-xlink-href.png │ │ │ ├── attributes-via-xlink-href.svg │ │ │ ├── default-attributes.png │ │ │ ├── default-attributes.svg │ │ │ ├── gradientTransform-and-transform.png │ │ │ ├── gradientTransform-and-transform.svg │ │ │ ├── gradientTransform.png │ │ │ ├── gradientTransform.svg │ │ │ ├── gradientUnits=objectBoundingBox-with-percent.png │ │ │ ├── gradientUnits=objectBoundingBox-with-percent.svg │ │ │ ├── gradientUnits=userSpaceOnUse-with-percent.png │ │ │ ├── gradientUnits=userSpaceOnUse-with-percent.svg │ │ │ ├── gradientUnits=userSpaceOnUse.png │ │ │ ├── gradientUnits=userSpaceOnUse.svg │ │ │ ├── hsla-color.png │ │ │ ├── hsla-color.svg │ │ │ ├── invalid-child-1.png │ │ │ ├── invalid-child-1.svg │ │ │ ├── invalid-child-2.png │ │ │ ├── invalid-child-2.svg │ │ │ ├── invalid-child-3.png │ │ │ ├── invalid-child-3.svg │ │ │ ├── invalid-gradientTransform.png │ │ │ ├── invalid-gradientTransform.svg │ │ │ ├── invalid-gradientUnits.png │ │ │ ├── invalid-gradientUnits.svg │ │ │ ├── invalid-spreadMethod.png │ │ │ ├── invalid-spreadMethod.svg │ │ │ ├── invalid-xlink-href.png │ │ │ ├── invalid-xlink-href.svg │ │ │ ├── many-stops.png │ │ │ ├── many-stops.svg │ │ │ ├── no-stops.png │ │ │ ├── no-stops.svg │ │ │ ├── recursive-xlink-href-1.png │ │ │ ├── recursive-xlink-href-1.svg │ │ │ ├── recursive-xlink-href-2.png │ │ │ ├── recursive-xlink-href-2.svg │ │ │ ├── recursive-xlink-href-3.png │ │ │ ├── recursive-xlink-href-3.svg │ │ │ ├── self-recursive-xlink-href.png │ │ │ ├── self-recursive-xlink-href.svg │ │ │ ├── single-stop-with-opacity-used-by-fill-and-stroke.png │ │ │ ├── single-stop-with-opacity-used-by-fill-and-stroke.svg │ │ │ ├── single-stop-with-opacity-used-by-fill.png │ │ │ ├── single-stop-with-opacity-used-by-fill.svg │ │ │ ├── single-stop-with-opacity-used-by-stroke.png │ │ │ ├── single-stop-with-opacity-used-by-stroke.svg │ │ │ ├── single-stop.png │ │ │ ├── single-stop.svg │ │ │ ├── spreadMethod=pad.png │ │ │ ├── spreadMethod=pad.svg │ │ │ ├── spreadMethod=reflect.png │ │ │ ├── spreadMethod=reflect.svg │ │ │ ├── spreadMethod=repeat.png │ │ │ ├── spreadMethod=repeat.svg │ │ │ ├── stops-via-xlink-href-complex-order-1.png │ │ │ ├── stops-via-xlink-href-complex-order-1.svg │ │ │ ├── stops-via-xlink-href-complex-order-2.png │ │ │ ├── stops-via-xlink-href-complex-order-2.svg │ │ │ ├── stops-via-xlink-href-from-radialGradient.png │ │ │ ├── stops-via-xlink-href-from-radialGradient.svg │ │ │ ├── stops-via-xlink-href-from-rect.png │ │ │ ├── stops-via-xlink-href-from-rect.svg │ │ │ ├── stops-via-xlink-href.png │ │ │ ├── stops-via-xlink-href.svg │ │ │ ├── unresolved-xlink-href.png │ │ │ └── unresolved-xlink-href.svg │ │ ├── pattern │ │ │ ├── attributes-via-xlink-href.png │ │ │ ├── attributes-via-xlink-href.svg │ │ │ ├── child-with-invalid-FuncIRI.png │ │ │ ├── child-with-invalid-FuncIRI.svg │ │ │ ├── children-via-xlink-href.png │ │ │ ├── children-via-xlink-href.svg │ │ │ ├── display=none-on-child.png │ │ │ ├── display=none-on-child.svg │ │ │ ├── everything-via-xlink-href.png │ │ │ ├── everything-via-xlink-href.svg │ │ │ ├── invalid-patternTransform.png │ │ │ ├── invalid-patternTransform.svg │ │ │ ├── invalid-patternUnits-and-patternContentUnits.png │ │ │ ├── invalid-patternUnits-and-patternContentUnits.svg │ │ │ ├── missing-height.png │ │ │ ├── missing-height.svg │ │ │ ├── missing-width.png │ │ │ ├── missing-width.svg │ │ │ ├── nested-objectBoundingBox.png │ │ │ ├── nested-objectBoundingBox.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── out-of-order-referencing.png │ │ │ ├── out-of-order-referencing.svg │ │ │ ├── overflow=visible.png │ │ │ ├── overflow=visible.svg │ │ │ ├── pattern-on-child.png │ │ │ ├── pattern-on-child.svg │ │ │ ├── patternContentUnits-with-viewBox.png │ │ │ ├── patternContentUnits-with-viewBox.svg │ │ │ ├── patternContentUnits=objectBoundingBox.png │ │ │ ├── patternContentUnits=objectBoundingBox.svg │ │ │ ├── patternUnits=objectBoundingBox-with-percent.png │ │ │ ├── patternUnits=objectBoundingBox-with-percent.svg │ │ │ ├── patternUnits=objectBoundingBox.png │ │ │ ├── patternUnits=objectBoundingBox.svg │ │ │ ├── patternUnits=userSpaceOnUse-with-percent.png │ │ │ ├── patternUnits=userSpaceOnUse-with-percent.svg │ │ │ ├── preserveAspectRatio.png │ │ │ ├── preserveAspectRatio.svg │ │ │ ├── recursive-on-child.png │ │ │ ├── recursive-on-child.svg │ │ │ ├── self-recursive-on-child.png │ │ │ ├── self-recursive-on-child.svg │ │ │ ├── self-recursive.png │ │ │ ├── self-recursive.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── text-child.png │ │ │ ├── text-child.svg │ │ │ ├── tiny-pattern-upscaled.png │ │ │ ├── tiny-pattern-upscaled.svg │ │ │ ├── transform-and-patternTransform.png │ │ │ ├── transform-and-patternTransform.svg │ │ │ ├── viewBox-via-xlink-href.png │ │ │ ├── viewBox-via-xlink-href.svg │ │ │ ├── with-patternTransform.png │ │ │ ├── with-patternTransform.svg │ │ │ ├── with-viewBox.png │ │ │ ├── with-viewBox.svg │ │ │ ├── with-x-and-y.png │ │ │ └── with-x-and-y.svg │ │ ├── radialGradient │ │ │ ├── attributes-via-xlink-href-complex-order.png │ │ │ ├── attributes-via-xlink-href-complex-order.svg │ │ │ ├── attributes-via-xlink-href-from-linearGradient.png │ │ │ ├── attributes-via-xlink-href-from-linearGradient.svg │ │ │ ├── attributes-via-xlink-href-from-rect.png │ │ │ ├── attributes-via-xlink-href-from-rect.svg │ │ │ ├── attributes-via-xlink-href-only-required.png │ │ │ ├── attributes-via-xlink-href-only-required.svg │ │ │ ├── attributes-via-xlink-href.png │ │ │ ├── attributes-via-xlink-href.svg │ │ │ ├── default-attributes.png │ │ │ ├── default-attributes.svg │ │ │ ├── focal-point-correction.png │ │ │ ├── focal-point-correction.svg │ │ │ ├── fr=-1.png │ │ │ ├── fr=-1.svg │ │ │ ├── fr=0.2.png │ │ │ ├── fr=0.2.svg │ │ │ ├── fr=0.5.png │ │ │ ├── fr=0.5.svg │ │ │ ├── fr=0.7.png │ │ │ ├── fr=0.7.svg │ │ │ ├── fx-resolving-1.png │ │ │ ├── fx-resolving-1.svg │ │ │ ├── fx-resolving-2.png │ │ │ ├── fx-resolving-2.svg │ │ │ ├── fx-resolving-3.png │ │ │ ├── fx-resolving-3.svg │ │ │ ├── fy-resolving-1.png │ │ │ ├── fy-resolving-1.svg │ │ │ ├── fy-resolving-2.png │ │ │ ├── fy-resolving-2.svg │ │ │ ├── fy-resolving-3.png │ │ │ ├── fy-resolving-3.svg │ │ │ ├── gradientTransform-and-transform.png │ │ │ ├── gradientTransform-and-transform.svg │ │ │ ├── gradientTransform.png │ │ │ ├── gradientTransform.svg │ │ │ ├── gradientUnits=objectBoundingBox-with-percent.png │ │ │ ├── gradientUnits=objectBoundingBox-with-percent.svg │ │ │ ├── gradientUnits=userSpaceOnUse-with-percent.png │ │ │ ├── gradientUnits=userSpaceOnUse-with-percent.svg │ │ │ ├── gradientUnits=userSpaceOnUse.png │ │ │ ├── gradientUnits=userSpaceOnUse.svg │ │ │ ├── hsla-color.png │ │ │ ├── hsla-color.svg │ │ │ ├── invalid-gradientTransform.png │ │ │ ├── invalid-gradientTransform.svg │ │ │ ├── invalid-gradientUnits.png │ │ │ ├── invalid-gradientUnits.svg │ │ │ ├── invalid-spreadMethod.png │ │ │ ├── invalid-spreadMethod.svg │ │ │ ├── invalid-xlink-href.png │ │ │ ├── invalid-xlink-href.svg │ │ │ ├── many-stops.png │ │ │ ├── many-stops.svg │ │ │ ├── negative-r.png │ │ │ ├── negative-r.svg │ │ │ ├── no-stops.png │ │ │ ├── no-stops.svg │ │ │ ├── recursive-xlink-href.png │ │ │ ├── recursive-xlink-href.svg │ │ │ ├── self-recursive-xlink-href.png │ │ │ ├── self-recursive-xlink-href.svg │ │ │ ├── single-stop.png │ │ │ ├── single-stop.svg │ │ │ ├── spreadMethod=pad.png │ │ │ ├── spreadMethod=pad.svg │ │ │ ├── spreadMethod=reflect.png │ │ │ ├── spreadMethod=reflect.svg │ │ │ ├── spreadMethod=repeat.png │ │ │ ├── spreadMethod=repeat.svg │ │ │ ├── stops-via-xlink-href-complex-order.png │ │ │ ├── stops-via-xlink-href-complex-order.svg │ │ │ ├── stops-via-xlink-href-from-linearGradient.png │ │ │ ├── stops-via-xlink-href-from-linearGradient.svg │ │ │ ├── stops-via-xlink-href-from-rect.png │ │ │ ├── stops-via-xlink-href-from-rect.svg │ │ │ ├── stops-via-xlink-href.png │ │ │ ├── stops-via-xlink-href.svg │ │ │ ├── unresolved-xlink-href.png │ │ │ ├── unresolved-xlink-href.svg │ │ │ ├── xlink-href-not-to-gradient.png │ │ │ ├── xlink-href-not-to-gradient.svg │ │ │ ├── zero-r-with-stop-opacity-1.png │ │ │ ├── zero-r-with-stop-opacity-1.svg │ │ │ ├── zero-r-with-stop-opacity-2.png │ │ │ ├── zero-r-with-stop-opacity-2.svg │ │ │ ├── zero-r.png │ │ │ └── zero-r.svg │ │ ├── stop-color │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── stop-opacity │ │ │ ├── 50percent.png │ │ │ ├── 50percent.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ └── stop │ │ │ ├── equal-stop-color.png │ │ │ ├── equal-stop-color.svg │ │ │ ├── hsla-color.png │ │ │ ├── hsla-color.svg │ │ │ ├── invalid-offset-1.png │ │ │ ├── invalid-offset-1.svg │ │ │ ├── invalid-offset-2.png │ │ │ ├── invalid-offset-2.svg │ │ │ ├── missing-offset-1.png │ │ │ ├── missing-offset-1.svg │ │ │ ├── missing-offset-2.png │ │ │ ├── missing-offset-2.svg │ │ │ ├── missing-offset-3.png │ │ │ ├── missing-offset-3.svg │ │ │ ├── missing-offset-4.png │ │ │ ├── missing-offset-4.svg │ │ │ ├── missing-offset-5.png │ │ │ ├── missing-offset-5.svg │ │ │ ├── missing-offset-6.png │ │ │ ├── missing-offset-6.svg │ │ │ ├── missing-offset-7.png │ │ │ ├── missing-offset-7.svg │ │ │ ├── no-stop-color.png │ │ │ ├── no-stop-color.svg │ │ │ ├── offset-clamping-with-percent.png │ │ │ ├── offset-clamping-with-percent.svg │ │ │ ├── offset-clamping.png │ │ │ ├── offset-clamping.svg │ │ │ ├── offset-with-percent.png │ │ │ ├── offset-with-percent.svg │ │ │ ├── stop-color-with-currentColor-1.png │ │ │ ├── stop-color-with-currentColor-1.svg │ │ │ ├── stop-color-with-currentColor-2.png │ │ │ ├── stop-color-with-currentColor-2.svg │ │ │ ├── stop-color-with-currentColor-3.png │ │ │ ├── stop-color-with-currentColor-3.svg │ │ │ ├── stop-color-with-currentColor-4.png │ │ │ ├── stop-color-with-currentColor-4.svg │ │ │ ├── stop-color-with-inherit-1.png │ │ │ ├── stop-color-with-inherit-1.svg │ │ │ ├── stop-color-with-inherit-2.png │ │ │ ├── stop-color-with-inherit-2.svg │ │ │ ├── stop-color-with-inherit-3.png │ │ │ ├── stop-color-with-inherit-3.svg │ │ │ ├── stop-color-with-inherit-4.png │ │ │ ├── stop-color-with-inherit-4.svg │ │ │ ├── stop-color-with-inherit-5.png │ │ │ ├── stop-color-with-inherit-5.svg │ │ │ ├── stop-with-smaller-offset.png │ │ │ ├── stop-with-smaller-offset.svg │ │ │ ├── stops-with-equal-offset-1.png │ │ │ ├── stops-with-equal-offset-1.svg │ │ │ ├── stops-with-equal-offset-2.png │ │ │ ├── stops-with-equal-offset-2.svg │ │ │ ├── stops-with-equal-offset-3.png │ │ │ ├── stops-with-equal-offset-3.svg │ │ │ ├── stops-with-equal-offset-4.png │ │ │ ├── stops-with-equal-offset-4.svg │ │ │ ├── stops-with-equal-offset-5.png │ │ │ ├── stops-with-equal-offset-5.svg │ │ │ ├── stops-with-equal-offset-6.png │ │ │ ├── stops-with-equal-offset-6.svg │ │ │ ├── zero-offset-in-the-middle.png │ │ │ └── zero-offset-in-the-middle.svg │ │ ├── painting │ │ ├── color │ │ │ ├── inherit.png │ │ │ ├── inherit.svg │ │ │ ├── recursive-nested-context-without-color.png │ │ │ ├── recursive-nested-context-without-color.svg │ │ │ ├── recursive-nested-context.png │ │ │ ├── recursive-nested-context.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── context │ │ │ ├── in-marker.png │ │ │ ├── in-marker.svg │ │ │ ├── in-nested-marker.png │ │ │ ├── in-nested-marker.svg │ │ │ ├── in-nested-use-and-marker.png │ │ │ ├── in-nested-use-and-marker.svg │ │ │ ├── in-nested-use.png │ │ │ ├── in-nested-use.svg │ │ │ ├── in-use.png │ │ │ ├── in-use.svg │ │ │ ├── on-shape-with-zero-size-bbox.png │ │ │ ├── on-shape-with-zero-size-bbox.svg │ │ │ ├── with-gradient-and-gradient-transform.png │ │ │ ├── with-gradient-and-gradient-transform.svg │ │ │ ├── with-gradient-in-use.png │ │ │ ├── with-gradient-in-use.svg │ │ │ ├── with-gradient-on-marker.png │ │ │ ├── with-gradient-on-marker.svg │ │ │ ├── with-pattern-and-transform-in-use.png │ │ │ ├── with-pattern-and-transform-in-use.svg │ │ │ ├── with-pattern-in-use.png │ │ │ ├── with-pattern-in-use.svg │ │ │ ├── with-pattern-objectBoundingBox-in-use.png │ │ │ ├── with-pattern-objectBoundingBox-in-use.svg │ │ │ ├── with-pattern-on-marker.png │ │ │ ├── with-pattern-on-marker.svg │ │ │ ├── with-text.png │ │ │ ├── with-text.svg │ │ │ ├── with-viewbox.png │ │ │ ├── with-viewbox.svg │ │ │ ├── without-context-element.png │ │ │ └── without-context-element.svg │ │ ├── display │ │ │ ├── bBox-impact.png │ │ │ ├── bBox-impact.svg │ │ │ ├── none-on-clipPath.png │ │ │ ├── none-on-clipPath.svg │ │ │ ├── none-on-defs.png │ │ │ ├── none-on-defs.svg │ │ │ ├── none-on-linearGradient.png │ │ │ ├── none-on-linearGradient.svg │ │ │ ├── none-on-rect.png │ │ │ ├── none-on-rect.svg │ │ │ ├── none-on-svg.png │ │ │ ├── none-on-svg.svg │ │ │ ├── none-on-tref.png │ │ │ ├── none-on-tref.svg │ │ │ ├── none-on-tspan-1.png │ │ │ ├── none-on-tspan-1.svg │ │ │ ├── none-on-tspan-2.png │ │ │ └── none-on-tspan-2.svg │ │ ├── fill-opacity │ │ │ ├── 50percent.png │ │ │ ├── 50percent.svg │ │ │ ├── half-opacity.png │ │ │ ├── half-opacity.svg │ │ │ ├── nested.png │ │ │ ├── nested.svg │ │ │ ├── on-parent.png │ │ │ ├── on-parent.svg │ │ │ ├── on-text.png │ │ │ ├── on-text.svg │ │ │ ├── with-linearGradient.png │ │ │ ├── with-linearGradient.svg │ │ │ ├── with-opacity.png │ │ │ ├── with-opacity.svg │ │ │ ├── with-pattern.png │ │ │ └── with-pattern.svg │ │ ├── fill-rule │ │ │ ├── evenodd.png │ │ │ ├── evenodd.svg │ │ │ ├── nonzero.png │ │ │ └── nonzero.svg │ │ ├── fill │ │ │ ├── #RGB-color.png │ │ │ ├── #RGB-color.svg │ │ │ ├── #RGBA.png │ │ │ ├── #RGBA.svg │ │ │ ├── #RRGGBB-color.png │ │ │ ├── #RRGGBB-color.svg │ │ │ ├── #RRGGBB-uppercase-color.png │ │ │ ├── #RRGGBB-uppercase-color.svg │ │ │ ├── #RRGGBBAA.png │ │ │ ├── #RRGGBBAA.svg │ │ │ ├── currentColor-without-parent.png │ │ │ ├── currentColor-without-parent.svg │ │ │ ├── currentColor.png │ │ │ ├── currentColor.svg │ │ │ ├── double-inherit.png │ │ │ ├── double-inherit.svg │ │ │ ├── funcIRI-to-a-missing-element-with-a-fallback-color.png │ │ │ ├── funcIRI-to-a-missing-element-with-a-fallback-color.svg │ │ │ ├── funcIRI-to-a-missing-element-with-a-none-fallback.png │ │ │ ├── funcIRI-to-a-missing-element-with-a-none-fallback.svg │ │ │ ├── funcIRI-to-an-invalid-element-with-a-none-fallback.png │ │ │ ├── funcIRI-to-an-invalid-element-with-a-none-fallback.svg │ │ │ ├── funcIRI-to-an-unsupported-element.png │ │ │ ├── funcIRI-to-an-unsupported-element.svg │ │ │ ├── funcIRI-with-a-fallback-color.png │ │ │ ├── funcIRI-with-a-fallback-color.svg │ │ │ ├── hsl-120-100percent-25percent.png │ │ │ ├── hsl-120-100percent-25percent.svg │ │ │ ├── hsl-120-200percent-25percent.png │ │ │ ├── hsl-120-200percent-25percent.svg │ │ │ ├── hsl-360-100percent-25percent.png │ │ │ ├── hsl-360-100percent-25percent.svg │ │ │ ├── hsl-999-100percent-25percent.png │ │ │ ├── hsl-999-100percent-25percent.svg │ │ │ ├── hsl-with-alpha.png │ │ │ ├── hsl-with-alpha.svg │ │ │ ├── hsla-with-percentage-s-and-l-values.png │ │ │ ├── hsla-with-percentage-s-and-l-values.svg │ │ │ ├── icc-color.png │ │ │ ├── icc-color.svg │ │ │ ├── inherit-without-parent.png │ │ │ ├── inherit-without-parent.svg │ │ │ ├── inherit.png │ │ │ ├── inherit.svg │ │ │ ├── invalid-#RRGGBB-1.png │ │ │ ├── invalid-#RRGGBB-1.svg │ │ │ ├── invalid-#RRGGBB-2.png │ │ │ ├── invalid-#RRGGBB-2.svg │ │ │ ├── invalid-#RRGGBB-3.png │ │ │ ├── invalid-#RRGGBB-3.svg │ │ │ ├── invalid-FuncIRI-with-a-currentColor-fallback.png │ │ │ ├── invalid-FuncIRI-with-a-currentColor-fallback.svg │ │ │ ├── invalid-FuncIRI-with-a-fallback-color.png │ │ │ ├── invalid-FuncIRI-with-a-fallback-color.svg │ │ │ ├── linear-gradient-on-shape.png │ │ │ ├── linear-gradient-on-shape.svg │ │ │ ├── linear-gradient-on-text.png │ │ │ ├── linear-gradient-on-text.svg │ │ │ ├── missing-FuncIRI-with-a-currentColor-fallback.png │ │ │ ├── missing-FuncIRI-with-a-currentColor-fallback.svg │ │ │ ├── named-color-in-mixedcase.png │ │ │ ├── named-color-in-mixedcase.svg │ │ │ ├── named-color-in-uppercase.png │ │ │ ├── named-color-in-uppercase.svg │ │ │ ├── named-color.png │ │ │ ├── named-color.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── not-trimmed-attribute-value.png │ │ │ ├── not-trimmed-attribute-value.svg │ │ │ ├── pattern-on-shape.png │ │ │ ├── pattern-on-shape.svg │ │ │ ├── pattern-on-text.png │ │ │ ├── pattern-on-text.svg │ │ │ ├── radial-gradient-on-shape.png │ │ │ ├── radial-gradient-on-shape.svg │ │ │ ├── radial-gradient-on-text.png │ │ │ ├── radial-gradient-on-text.svg │ │ │ ├── random-value.png │ │ │ ├── random-value.svg │ │ │ ├── rgb-0-127-0-0.5.png │ │ │ ├── rgb-0-127-0-0.5.svg │ │ │ ├── rgb-color-with-a-big-fraction-part.png │ │ │ ├── rgb-color-with-a-big-fraction-part.svg │ │ │ ├── rgb-color-with-extra-spaces.png │ │ │ ├── rgb-color-with-extra-spaces.svg │ │ │ ├── rgb-color-with-float-percentage-values.png │ │ │ ├── rgb-color-with-float-percentage-values.svg │ │ │ ├── rgb-color-with-floats.png │ │ │ ├── rgb-color-with-floats.svg │ │ │ ├── rgb-color-with-percentage-overflow.png │ │ │ ├── rgb-color-with-percentage-overflow.svg │ │ │ ├── rgb-color-with-percentage-values.png │ │ │ ├── rgb-color-with-percentage-values.svg │ │ │ ├── rgb-color.png │ │ │ ├── rgb-color.svg │ │ │ ├── rgb-int-int-int.png │ │ │ ├── rgb-int-int-int.svg │ │ │ ├── rgba-0-127-0--1.png │ │ │ ├── rgba-0-127-0--1.svg │ │ │ ├── rgba-0-127-0-0.5.png │ │ │ ├── rgba-0-127-0-0.5.svg │ │ │ ├── rgba-0-127-0-0.png │ │ │ ├── rgba-0-127-0-0.svg │ │ │ ├── rgba-0-127-0-1.png │ │ │ ├── rgba-0-127-0-1.svg │ │ │ ├── rgba-0-127-0-2.png │ │ │ ├── rgba-0-127-0-2.svg │ │ │ ├── rgba-0-127-0-50percent.png │ │ │ ├── rgba-0-127-0-50percent.svg │ │ │ ├── rgba-0-50percent-0-0.5.png │ │ │ ├── rgba-0-50percent-0-0.5.svg │ │ │ ├── rgba-0percent-50percent-0percent-0.5.png │ │ │ ├── rgba-0percent-50percent-0percent-0.5.svg │ │ │ ├── transparent.png │ │ │ ├── transparent.svg │ │ │ ├── uppercase-rgb-color.png │ │ │ ├── uppercase-rgb-color.svg │ │ │ ├── valid-FuncIRI-with-a-fallback-ICC-color.png │ │ │ └── valid-FuncIRI-with-a-fallback-ICC-color.svg │ │ ├── image-rendering │ │ │ ├── high-quality.png │ │ │ ├── high-quality.svg │ │ │ ├── on-feImage.png │ │ │ ├── on-feImage.svg │ │ │ ├── optimizeSpeed-on-SVG.png │ │ │ ├── optimizeSpeed-on-SVG.svg │ │ │ ├── optimizeSpeed.png │ │ │ └── optimizeSpeed.svg │ │ ├── isolation │ │ │ ├── as-property.png │ │ │ ├── as-property.svg │ │ │ ├── isolate.png │ │ │ └── isolate.svg │ │ ├── marker │ │ │ ├── default-clip.png │ │ │ ├── default-clip.svg │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── inheritance-1.png │ │ │ ├── inheritance-1.svg │ │ │ ├── inheritance-2.png │ │ │ ├── inheritance-2.svg │ │ │ ├── invalid-child.png │ │ │ ├── invalid-child.svg │ │ │ ├── marker-on-circle.png │ │ │ ├── marker-on-circle.svg │ │ │ ├── marker-on-line.png │ │ │ ├── marker-on-line.svg │ │ │ ├── marker-on-polygon.png │ │ │ ├── marker-on-polygon.svg │ │ │ ├── marker-on-polyline.png │ │ │ ├── marker-on-polyline.svg │ │ │ ├── marker-on-rect.png │ │ │ ├── marker-on-rect.svg │ │ │ ├── marker-on-rounded-rect.png │ │ │ ├── marker-on-rounded-rect.svg │ │ │ ├── marker-on-text.png │ │ │ ├── marker-on-text.svg │ │ │ ├── marker-with-a-negative-size.png │ │ │ ├── marker-with-a-negative-size.svg │ │ │ ├── nested.png │ │ │ ├── nested.svg │ │ │ ├── no-stroke-on-target.png │ │ │ ├── no-stroke-on-target.svg │ │ │ ├── on-ArcTo.png │ │ │ ├── on-ArcTo.svg │ │ │ ├── only-marker-end.png │ │ │ ├── only-marker-end.svg │ │ │ ├── only-marker-mid.png │ │ │ ├── only-marker-mid.svg │ │ │ ├── only-marker-start.png │ │ │ ├── only-marker-start.svg │ │ │ ├── orient=-45.png │ │ │ ├── orient=-45.svg │ │ │ ├── orient=0.25turn.png │ │ │ ├── orient=0.25turn.svg │ │ │ ├── orient=1.5rad.png │ │ │ ├── orient=1.5rad.svg │ │ │ ├── orient=30.png │ │ │ ├── orient=30.svg │ │ │ ├── orient=40grad.png │ │ │ ├── orient=40grad.svg │ │ │ ├── orient=9999.png │ │ │ ├── orient=9999.svg │ │ │ ├── orient=auto-on-M-C-C-1.png │ │ │ ├── orient=auto-on-M-C-C-1.svg │ │ │ ├── orient=auto-on-M-C-C-2.png │ │ │ ├── orient=auto-on-M-C-C-2.svg │ │ │ ├── orient=auto-on-M-C-C-3.png │ │ │ ├── orient=auto-on-M-C-C-3.svg │ │ │ ├── orient=auto-on-M-C-C-4.png │ │ │ ├── orient=auto-on-M-C-C-4.svg │ │ │ ├── orient=auto-on-M-C-C-5.png │ │ │ ├── orient=auto-on-M-C-C-5.svg │ │ │ ├── orient=auto-on-M-C-C-6.png │ │ │ ├── orient=auto-on-M-C-C-6.svg │ │ │ ├── orient=auto-on-M-C-C-7.png │ │ │ ├── orient=auto-on-M-C-C-7.svg │ │ │ ├── orient=auto-on-M-C-C-8.png │ │ │ ├── orient=auto-on-M-C-C-8.svg │ │ │ ├── orient=auto-on-M-C-L.png │ │ │ ├── orient=auto-on-M-C-L.svg │ │ │ ├── orient=auto-on-M-C-M-L.png │ │ │ ├── orient=auto-on-M-C-M-L.svg │ │ │ ├── orient=auto-on-M-L-C.png │ │ │ ├── orient=auto-on-M-L-C.svg │ │ │ ├── orient=auto-on-M-L-L-Z-Z-Z.png │ │ │ ├── orient=auto-on-M-L-L-Z-Z-Z.svg │ │ │ ├── orient=auto-on-M-L-L.png │ │ │ ├── orient=auto-on-M-L-L.svg │ │ │ ├── orient=auto-on-M-L-M-C.png │ │ │ ├── orient=auto-on-M-L-M-C.svg │ │ │ ├── orient=auto-on-M-L-Z.png │ │ │ ├── orient=auto-on-M-L-Z.svg │ │ │ ├── orient=auto-on-M-L.png │ │ │ ├── orient=auto-on-M-L.svg │ │ │ ├── orient=auto-start-reverse.png │ │ │ ├── orient=auto-start-reverse.svg │ │ │ ├── percent-values.png │ │ │ ├── percent-values.svg │ │ │ ├── recursive-1.png │ │ │ ├── recursive-1.svg │ │ │ ├── recursive-2.png │ │ │ ├── recursive-2.svg │ │ │ ├── recursive-3.png │ │ │ ├── recursive-3.svg │ │ │ ├── recursive-4.png │ │ │ ├── recursive-4.svg │ │ │ ├── recursive-5.png │ │ │ ├── recursive-5.svg │ │ │ ├── target-with-subpaths-1.png │ │ │ ├── target-with-subpaths-1.svg │ │ │ ├── target-with-subpaths-2.png │ │ │ ├── target-with-subpaths-2.svg │ │ │ ├── the-marker-property-in-CSS.png │ │ │ ├── the-marker-property-in-CSS.svg │ │ │ ├── the-marker-property.png │ │ │ ├── the-marker-property.svg │ │ │ ├── with-a-large-stroke.png │ │ │ ├── with-a-large-stroke.svg │ │ │ ├── with-a-text-child.png │ │ │ ├── with-a-text-child.svg │ │ │ ├── with-an-image-child.png │ │ │ ├── with-an-image-child.svg │ │ │ ├── with-invalid-markerUnits.png │ │ │ ├── with-invalid-markerUnits.svg │ │ │ ├── with-markerUnits=userSpaceOnUse.png │ │ │ ├── with-markerUnits=userSpaceOnUse.svg │ │ │ ├── with-viewBox-1.png │ │ │ ├── with-viewBox-1.svg │ │ │ ├── with-viewBox-2.png │ │ │ ├── with-viewBox-2.svg │ │ │ ├── zero-length-path-1.png │ │ │ ├── zero-length-path-1.svg │ │ │ ├── zero-length-path-2.png │ │ │ ├── zero-length-path-2.svg │ │ │ ├── zero-sized-stroke.png │ │ │ ├── zero-sized-stroke.svg │ │ │ ├── zero-sized.png │ │ │ └── zero-sized.svg │ │ ├── mix-blend-mode │ │ │ ├── as-property.png │ │ │ ├── as-property.svg │ │ │ ├── color-burn.png │ │ │ ├── color-burn.svg │ │ │ ├── color-dodge.png │ │ │ ├── color-dodge.svg │ │ │ ├── color.png │ │ │ ├── color.svg │ │ │ ├── darken.png │ │ │ ├── darken.svg │ │ │ ├── difference.png │ │ │ ├── difference.svg │ │ │ ├── exclusion.png │ │ │ ├── exclusion.svg │ │ │ ├── hard-light.png │ │ │ ├── hard-light.svg │ │ │ ├── hue.png │ │ │ ├── hue.svg │ │ │ ├── lighten.png │ │ │ ├── lighten.svg │ │ │ ├── luminosity.png │ │ │ ├── luminosity.svg │ │ │ ├── multiply.png │ │ │ ├── multiply.svg │ │ │ ├── normal.png │ │ │ ├── normal.svg │ │ │ ├── opacity-on-element.png │ │ │ ├── opacity-on-element.svg │ │ │ ├── opacity-on-group.png │ │ │ ├── opacity-on-group.svg │ │ │ ├── overlay.png │ │ │ ├── overlay.svg │ │ │ ├── saturation.png │ │ │ ├── saturation.svg │ │ │ ├── screen.png │ │ │ ├── screen.svg │ │ │ ├── soft-light.png │ │ │ ├── soft-light.svg │ │ │ ├── xor.png │ │ │ └── xor.svg │ │ ├── opacity │ │ │ ├── 50percent.png │ │ │ ├── 50percent.svg │ │ │ ├── bBox-impact.png │ │ │ ├── bBox-impact.svg │ │ │ ├── clamp-value-1.png │ │ │ ├── clamp-value-1.svg │ │ │ ├── clamp-value-2.png │ │ │ ├── clamp-value-2.svg │ │ │ ├── group-opacity.png │ │ │ ├── group-opacity.svg │ │ │ ├── invalid-value-2.png │ │ │ ├── invalid-value-2.svg │ │ │ ├── mixed-group-opacity.png │ │ │ ├── mixed-group-opacity.svg │ │ │ ├── on-an-invalid-element.png │ │ │ ├── on-an-invalid-element.svg │ │ │ ├── on-the-root-svg.png │ │ │ └── on-the-root-svg.svg │ │ ├── overflow │ │ │ ├── auto-on-marker.png │ │ │ ├── auto-on-marker.svg │ │ │ ├── inherit-on-marker-without-parent.png │ │ │ ├── inherit-on-marker-without-parent.svg │ │ │ ├── inherit-on-marker.png │ │ │ ├── inherit-on-marker.svg │ │ │ ├── scroll-on-marker.png │ │ │ ├── scroll-on-marker.svg │ │ │ ├── visible-on-marker.png │ │ │ └── visible-on-marker.svg │ │ ├── paint-order │ │ │ ├── duplicates.png │ │ │ ├── duplicates.svg │ │ │ ├── fill-markers-stroke.png │ │ │ ├── fill-markers-stroke.svg │ │ │ ├── fill.png │ │ │ ├── fill.svg │ │ │ ├── invalid.png │ │ │ ├── invalid.svg │ │ │ ├── markers-stroke.png │ │ │ ├── markers-stroke.svg │ │ │ ├── markers.png │ │ │ ├── markers.svg │ │ │ ├── normal.png │ │ │ ├── normal.svg │ │ │ ├── on-text.png │ │ │ ├── on-text.svg │ │ │ ├── on-tspan.png │ │ │ ├── on-tspan.svg │ │ │ ├── stroke-invalid.png │ │ │ ├── stroke-invalid.svg │ │ │ ├── stroke-markers-fill.png │ │ │ ├── stroke-markers-fill.svg │ │ │ ├── stroke-markers.png │ │ │ ├── stroke-markers.svg │ │ │ ├── stroke.png │ │ │ ├── stroke.svg │ │ │ ├── trailing-data.png │ │ │ └── trailing-data.svg │ │ ├── shape-rendering │ │ │ ├── auto-on-circle.png │ │ │ ├── auto-on-circle.svg │ │ │ ├── crispEdges-on-circle.png │ │ │ ├── crispEdges-on-circle.svg │ │ │ ├── geometricPrecision-on-circle.png │ │ │ ├── geometricPrecision-on-circle.svg │ │ │ ├── inheritance.png │ │ │ ├── inheritance.svg │ │ │ ├── on-horizontal-line.png │ │ │ ├── on-horizontal-line.svg │ │ │ ├── optimizeSpeed-on-circle.png │ │ │ ├── optimizeSpeed-on-circle.svg │ │ │ ├── optimizeSpeed-on-text.png │ │ │ ├── optimizeSpeed-on-text.svg │ │ │ ├── path-with-marker.png │ │ │ └── path-with-marker.svg │ │ ├── stroke-dasharray │ │ │ ├── 0-n-with-butt-caps.png │ │ │ ├── 0-n-with-butt-caps.svg │ │ │ ├── 0-n-with-round-caps.png │ │ │ ├── 0-n-with-round-caps.svg │ │ │ ├── 0-n-with-square-caps.png │ │ │ ├── 0-n-with-square-caps.svg │ │ │ ├── comma-ws-separator.png │ │ │ ├── comma-ws-separator.svg │ │ │ ├── em-units.png │ │ │ ├── em-units.svg │ │ │ ├── even-count.png │ │ │ ├── even-count.svg │ │ │ ├── mm-units.png │ │ │ ├── mm-units.svg │ │ │ ├── multiple-subpaths.png │ │ │ ├── multiple-subpaths.svg │ │ │ ├── n-0.png │ │ │ ├── n-0.svg │ │ │ ├── negative-sum.png │ │ │ ├── negative-sum.svg │ │ │ ├── negative-values.png │ │ │ ├── negative-values.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── odd-count.png │ │ │ ├── odd-count.svg │ │ │ ├── on-a-circle.png │ │ │ ├── on-a-circle.svg │ │ │ ├── percent-units.png │ │ │ ├── percent-units.svg │ │ │ ├── ws-separator.png │ │ │ ├── ws-separator.svg │ │ │ ├── zero-sum.png │ │ │ └── zero-sum.svg │ │ ├── stroke-dashoffset │ │ │ ├── default.png │ │ │ ├── default.svg │ │ │ ├── em-units.png │ │ │ ├── em-units.svg │ │ │ ├── mm-units.png │ │ │ ├── mm-units.svg │ │ │ ├── negative-value.png │ │ │ ├── negative-value.svg │ │ │ ├── percent-units.png │ │ │ ├── percent-units.svg │ │ │ ├── px-units.png │ │ │ └── px-units.svg │ │ ├── stroke-linecap │ │ │ ├── butt.png │ │ │ ├── butt.svg │ │ │ ├── open-path-with-butt.png │ │ │ ├── open-path-with-butt.svg │ │ │ ├── open-path-with-round.png │ │ │ ├── open-path-with-round.svg │ │ │ ├── open-path-with-square.png │ │ │ ├── open-path-with-square.svg │ │ │ ├── round.png │ │ │ ├── round.svg │ │ │ ├── square.png │ │ │ ├── square.svg │ │ │ ├── zero-length-path-with-butt.png │ │ │ ├── zero-length-path-with-butt.svg │ │ │ ├── zero-length-path-with-round.png │ │ │ ├── zero-length-path-with-round.svg │ │ │ ├── zero-length-path-with-square.png │ │ │ └── zero-length-path-with-square.svg │ │ ├── stroke-linejoin │ │ │ ├── arcs.png │ │ │ ├── arcs.svg │ │ │ ├── bevel.png │ │ │ ├── bevel.svg │ │ │ ├── miter-clip.png │ │ │ ├── miter-clip.svg │ │ │ ├── miter.png │ │ │ ├── miter.svg │ │ │ ├── round.png │ │ │ └── round.svg │ │ ├── stroke-miterlimit │ │ │ ├── default.png │ │ │ ├── default.svg │ │ │ ├── invalid-value.png │ │ │ ├── invalid-value.svg │ │ │ ├── valid-value.png │ │ │ ├── valid-value.svg │ │ │ ├── value-with-mm.png │ │ │ ├── value-with-mm.svg │ │ │ ├── value-with-percent.png │ │ │ └── value-with-percent.svg │ │ ├── stroke-opacity │ │ │ ├── 50percent.png │ │ │ ├── 50percent.svg │ │ │ ├── half-opacity.png │ │ │ ├── half-opacity.svg │ │ │ ├── nested.png │ │ │ ├── nested.svg │ │ │ ├── on-parent.png │ │ │ ├── on-parent.svg │ │ │ ├── on-text.png │ │ │ ├── on-text.svg │ │ │ ├── with-linearGradient.png │ │ │ ├── with-linearGradient.svg │ │ │ ├── with-opacity.png │ │ │ ├── with-opacity.svg │ │ │ ├── with-pattern.png │ │ │ └── with-pattern.svg │ │ ├── stroke-width │ │ │ ├── bold.png │ │ │ ├── bold.svg │ │ │ ├── default.png │ │ │ ├── default.svg │ │ │ ├── negative.png │ │ │ ├── negative.svg │ │ │ ├── percentage.png │ │ │ ├── percentage.svg │ │ │ ├── zero.png │ │ │ └── zero.svg │ │ ├── stroke │ │ │ ├── control-points-clamping-1.png │ │ │ ├── control-points-clamping-1.svg │ │ │ ├── control-points-clamping-2.png │ │ │ ├── control-points-clamping-2.svg │ │ │ ├── currentColor-without-a-parent.png │ │ │ ├── currentColor-without-a-parent.svg │ │ │ ├── funcIRI-to-unsupported-element.png │ │ │ ├── funcIRI-to-unsupported-element.svg │ │ │ ├── gradient-with-objectBoundingBox-and-fallback-on-lines.png │ │ │ ├── gradient-with-objectBoundingBox-and-fallback-on-lines.svg │ │ │ ├── gradient-with-objectBoundingBox-on-path-without-a-bbox-1.png │ │ │ ├── gradient-with-objectBoundingBox-on-path-without-a-bbox-1.svg │ │ │ ├── gradient-with-objectBoundingBox-on-path-without-a-bbox-2.png │ │ │ ├── gradient-with-objectBoundingBox-on-path-without-a-bbox-2.svg │ │ │ ├── gradient-with-objectBoundingBox-on-shape-without-a-bbox.png │ │ │ ├── gradient-with-objectBoundingBox-on-shape-without-a-bbox.svg │ │ │ ├── line-as-curve-1.png │ │ │ ├── line-as-curve-1.svg │ │ │ ├── line-as-curve-2.png │ │ │ ├── line-as-curve-2.svg │ │ │ ├── linear-gradient-on-text.png │ │ │ ├── linear-gradient-on-text.svg │ │ │ ├── linear-gradient.png │ │ │ ├── linear-gradient.svg │ │ │ ├── named-color.png │ │ │ ├── named-color.svg │ │ │ ├── none.png │ │ │ ├── none.svg │ │ │ ├── pattern-on-text.png │ │ │ ├── pattern-on-text.svg │ │ │ ├── pattern-with-objectBoundingBox-fallback-on-zero-bbox-shape.png │ │ │ ├── pattern-with-objectBoundingBox-fallback-on-zero-bbox-shape.svg │ │ │ ├── pattern-with-objectBoundingBox-on-zero-bbox-shape.png │ │ │ ├── pattern-with-objectBoundingBox-on-zero-bbox-shape.svg │ │ │ ├── pattern.png │ │ │ ├── pattern.svg │ │ │ ├── radial-gradient-on-text.png │ │ │ ├── radial-gradient-on-text.svg │ │ │ ├── radial-gradient.png │ │ │ └── radial-gradient.svg │ │ └── visibility │ │ │ ├── bbox-impact-1.png │ │ │ ├── bbox-impact-1.svg │ │ │ ├── bbox-impact-2.png │ │ │ ├── bbox-impact-2.svg │ │ │ ├── bbox-impact-3.png │ │ │ ├── bbox-impact-3.svg │ │ │ ├── collapse-on-tspan.png │ │ │ ├── collapse-on-tspan.svg │ │ │ ├── hidden-on-group.png │ │ │ ├── hidden-on-group.svg │ │ │ ├── hidden-on-shape.png │ │ │ ├── hidden-on-shape.svg │ │ │ ├── hidden-on-tspan.png │ │ │ └── hidden-on-tspan.svg │ │ ├── shapes │ │ ├── circle │ │ │ ├── missing-cx-and-cy-attributes.png │ │ │ ├── missing-cx-and-cy-attributes.svg │ │ │ ├── missing-cx-attribute.png │ │ │ ├── missing-cx-attribute.svg │ │ │ ├── missing-cy-attribute.png │ │ │ ├── missing-cy-attribute.svg │ │ │ ├── missing-r-attribute.png │ │ │ ├── missing-r-attribute.svg │ │ │ ├── negative-r-attribute.png │ │ │ ├── negative-r-attribute.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── ellipse │ │ │ ├── missing-cx-and-cy-attributes.png │ │ │ ├── missing-cx-and-cy-attributes.svg │ │ │ ├── missing-cx-attribute.png │ │ │ ├── missing-cx-attribute.svg │ │ │ ├── missing-cy-attribute.png │ │ │ ├── missing-cy-attribute.svg │ │ │ ├── missing-rx-and-ry-attributes.png │ │ │ ├── missing-rx-and-ry-attributes.svg │ │ │ ├── missing-rx-attribute.png │ │ │ ├── missing-rx-attribute.svg │ │ │ ├── missing-ry-attribute.png │ │ │ ├── missing-ry-attribute.svg │ │ │ ├── negative-rx-and-ry-attributes.png │ │ │ ├── negative-rx-and-ry-attributes.svg │ │ │ ├── negative-rx-attribute.png │ │ │ ├── negative-rx-attribute.svg │ │ │ ├── negative-ry-attribute.png │ │ │ ├── negative-ry-attribute.svg │ │ │ ├── percent-values-missing-ry.png │ │ │ ├── percent-values-missing-ry.svg │ │ │ ├── percent-values.png │ │ │ ├── percent-values.svg │ │ │ ├── simple-case.png │ │ │ └── simple-case.svg │ │ ├── line │ │ │ ├── no-coordinates.png │ │ │ ├── no-coordinates.svg │ │ │ ├── no-x1-and-y1-coordinates.png │ │ │ ├── no-x1-and-y1-coordinates.svg │ │ │ ├── no-x1-coordinate.png │ │ │ ├── no-x1-coordinate.svg │ │ │ ├── no-x2-and-y2-coordinates.png │ │ │ ├── no-x2-and-y2-coordinates.svg │ │ │ ├── no-x2-coordinate.png │ │ │ ├── no-x2-coordinate.svg │ │ │ ├── no-y1-coordinate.png │ │ │ ├── no-y1-coordinate.svg │ │ │ ├── no-y2-coordinate.png │ │ │ ├── no-y2-coordinate.svg │ │ │ ├── percent-units.png │ │ │ ├── percent-units.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── with-transform.png │ │ │ └── with-transform.svg │ │ ├── path │ │ │ ├── A.png │ │ │ ├── A.svg │ │ │ ├── M-A-s.png │ │ │ ├── M-A-s.svg │ │ │ ├── M-A-t.png │ │ │ ├── M-A-t.svg │ │ │ ├── M-A-trimmed.png │ │ │ ├── M-A-trimmed.svg │ │ │ ├── M-A.png │ │ │ ├── M-A.svg │ │ │ ├── M-C-S.png │ │ │ ├── M-C-S.svg │ │ │ ├── M-C.png │ │ │ ├── M-C.svg │ │ │ ├── M-H-H-implicit.png │ │ │ ├── M-H-H-implicit.svg │ │ │ ├── M-H-H.png │ │ │ ├── M-H-H.svg │ │ │ ├── M-H.png │ │ │ ├── M-H.svg │ │ │ ├── M-L-L-Z-rel.png │ │ │ ├── M-L-L-Z-rel.svg │ │ │ ├── M-L-L-Z.png │ │ │ ├── M-L-L-Z.svg │ │ │ ├── M-L-L-implicit.png │ │ │ ├── M-L-L-implicit.svg │ │ │ ├── M-L-M-L.png │ │ │ ├── M-L-M-L.svg │ │ │ ├── M-L-M-Z.png │ │ │ ├── M-L-M-Z.svg │ │ │ ├── M-L-M.png │ │ │ ├── M-L-M.svg │ │ │ ├── M-L-Z-A.png │ │ │ ├── M-L-Z-A.svg │ │ │ ├── M-L-Z-L-L.png │ │ │ ├── M-L-Z-L-L.svg │ │ │ ├── M-L.png │ │ │ ├── M-L.svg │ │ │ ├── M-M-implicit-M-implicit.png │ │ │ ├── M-M-implicit-M-implicit.svg │ │ │ ├── M-M-rel.png │ │ │ ├── M-M-rel.svg │ │ │ ├── M-M.png │ │ │ ├── M-M.svg │ │ │ ├── M-Q-T-rel.png │ │ │ ├── M-Q-T-rel.svg │ │ │ ├── M-Q-T.png │ │ │ ├── M-Q-T.svg │ │ │ ├── M-Q-rel-T-rel.png │ │ │ ├── M-Q-rel-T-rel.svg │ │ │ ├── M-Q.png │ │ │ ├── M-Q.svg │ │ │ ├── M-S-S.png │ │ │ ├── M-S-S.svg │ │ │ ├── M-S.png │ │ │ ├── M-S.svg │ │ │ ├── M-T-Q-rel.png │ │ │ ├── M-T-Q-rel.svg │ │ │ ├── M-T-Q.png │ │ │ ├── M-T-Q.svg │ │ │ ├── M-T-S-rel.png │ │ │ ├── M-T-S-rel.svg │ │ │ ├── M-T-S.png │ │ │ ├── M-T-S.svg │ │ │ ├── M-T-T-rel.png │ │ │ ├── M-T-T-rel.svg │ │ │ ├── M-T-T.png │ │ │ ├── M-T-T.svg │ │ │ ├── M-T.png │ │ │ ├── M-T.svg │ │ │ ├── M-V-V-implicit.png │ │ │ ├── M-V-V-implicit.svg │ │ │ ├── M-V-V.png │ │ │ ├── M-V-V.svg │ │ │ ├── M-V.png │ │ │ ├── M-V.svg │ │ │ ├── M-Z.png │ │ │ ├── M-Z.svg │ │ │ ├── M-rel-M-rel-implicit-M-rel-implicit.png │ │ │ ├── M-rel-M-rel-implicit-M-rel-implicit.svg │ │ │ ├── M-rel-M.png │ │ │ ├── M-rel-M.svg │ │ │ ├── M.png │ │ │ ├── M.svg │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── extra-spaces.png │ │ │ ├── extra-spaces.svg │ │ │ ├── invalid-data-in-L.png │ │ │ ├── invalid-data-in-L.svg │ │ │ ├── invalid-transform.png │ │ │ ├── invalid-transform.svg │ │ │ ├── missing-coordinate-in-L.png │ │ │ ├── missing-coordinate-in-L.svg │ │ │ ├── multi-line-data.png │ │ │ ├── multi-line-data.svg │ │ │ ├── negative-large-arc-flag-value.png │ │ │ ├── negative-large-arc-flag-value.svg │ │ │ ├── negative-sweep-flag-value.png │ │ │ ├── negative-sweep-flag-value.svg │ │ │ ├── no-commawsp-after-sweep-flag.png │ │ │ ├── no-commawsp-after-sweep-flag.svg │ │ │ ├── no-commawsp-before-arc-flags.png │ │ │ ├── no-commawsp-before-arc-flags.svg │ │ │ ├── no-commawsp-between-and-after-arc-flags.png │ │ │ ├── no-commawsp-between-and-after-arc-flags.svg │ │ │ ├── no-commawsp-between-arc-flags.png │ │ │ ├── no-commawsp-between-arc-flags.svg │ │ │ ├── numeric-character-references.png │ │ │ ├── numeric-character-references.svg │ │ │ ├── out-of-range-large-arc-flag-value.png │ │ │ ├── out-of-range-large-arc-flag-value.svg │ │ │ ├── out-of-range-sweep-flag-value.png │ │ │ └── out-of-range-sweep-flag-value.svg │ │ ├── polygon │ │ │ ├── ignore-odd-points.png │ │ │ ├── ignore-odd-points.svg │ │ │ ├── missing-points-attribute.png │ │ │ ├── missing-points-attribute.svg │ │ │ ├── not-enough-points.png │ │ │ ├── not-enough-points.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── stop-processing-on-invalid-data.png │ │ │ └── stop-processing-on-invalid-data.svg │ │ ├── polyline │ │ │ ├── ignore-odd-points.png │ │ │ ├── ignore-odd-points.svg │ │ │ ├── missing-points-attribute.png │ │ │ ├── missing-points-attribute.svg │ │ │ ├── not-enough-points.png │ │ │ ├── not-enough-points.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── stop-processing-on-invalid-data.png │ │ │ └── stop-processing-on-invalid-data.svg │ │ └── rect │ │ │ ├── cap-values.png │ │ │ ├── cap-values.svg │ │ │ ├── ch-values.png │ │ │ ├── ch-values.svg │ │ │ ├── em-values.png │ │ │ ├── em-values.svg │ │ │ ├── ex-values.png │ │ │ ├── ex-values.svg │ │ │ ├── ic-values.png │ │ │ ├── ic-values.svg │ │ │ ├── invalid-coordinates.png │ │ │ ├── invalid-coordinates.svg │ │ │ ├── invalid-length.png │ │ │ ├── invalid-length.svg │ │ │ ├── lh-values.png │ │ │ ├── lh-values.svg │ │ │ ├── missing-height-attribute-processing.png │ │ │ ├── missing-height-attribute-processing.svg │ │ │ ├── missing-width-attribute-processing.png │ │ │ ├── missing-width-attribute-processing.svg │ │ │ ├── mm-values.png │ │ │ ├── mm-values.svg │ │ │ ├── negative-height-attribute-processing.png │ │ │ ├── negative-height-attribute-processing.svg │ │ │ ├── negative-rx-and-ry-attributes-resolving.png │ │ │ ├── negative-rx-and-ry-attributes-resolving.svg │ │ │ ├── negative-rx-attribute-resolving.png │ │ │ ├── negative-rx-attribute-resolving.svg │ │ │ ├── negative-ry-attribute-resolving.png │ │ │ ├── negative-ry-attribute-resolving.svg │ │ │ ├── negative-width-attribute-processing.png │ │ │ ├── negative-width-attribute-processing.svg │ │ │ ├── percentage-values-1.png │ │ │ ├── percentage-values-1.svg │ │ │ ├── percentage-values-2.png │ │ │ ├── percentage-values-2.svg │ │ │ ├── q-values.png │ │ │ ├── q-values.svg │ │ │ ├── rem-values.png │ │ │ ├── rem-values.svg │ │ │ ├── rlh-values.png │ │ │ ├── rlh-values.svg │ │ │ ├── rounded-rect.png │ │ │ ├── rounded-rect.svg │ │ │ ├── rx-and-ry-attributes-clamping-order.png │ │ │ ├── rx-and-ry-attributes-clamping-order.svg │ │ │ ├── rx-attribute-clamping.png │ │ │ ├── rx-attribute-clamping.svg │ │ │ ├── rx-attribute-resolving.png │ │ │ ├── rx-attribute-resolving.svg │ │ │ ├── ry-attribute-clamping.png │ │ │ ├── ry-attribute-clamping.svg │ │ │ ├── ry-attribute-resolving.png │ │ │ ├── ry-attribute-resolving.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── vi-and-vb-values.png │ │ │ ├── vi-and-vb-values.svg │ │ │ ├── vmin-and-vmax-values.png │ │ │ ├── vmin-and-vmax-values.svg │ │ │ ├── vw-and-vh-values.png │ │ │ ├── vw-and-vh-values.svg │ │ │ ├── with-child.png │ │ │ ├── with-child.svg │ │ │ ├── x-attribute-resolving.png │ │ │ ├── x-attribute-resolving.svg │ │ │ ├── y-attribute-resolving.png │ │ │ ├── y-attribute-resolving.svg │ │ │ ├── zero-height-attribute-processing.png │ │ │ ├── zero-height-attribute-processing.svg │ │ │ ├── zero-rx-attribute-resolving.png │ │ │ ├── zero-rx-attribute-resolving.svg │ │ │ ├── zero-ry-attribute-resolving.png │ │ │ ├── zero-ry-attribute-resolving.svg │ │ │ ├── zero-width-attribute-processing.png │ │ │ └── zero-width-attribute-processing.svg │ │ ├── structure │ │ ├── a │ │ │ ├── inside-text.png │ │ │ ├── inside-text.svg │ │ │ ├── inside-tspan.png │ │ │ ├── inside-tspan.svg │ │ │ ├── on-shape.png │ │ │ ├── on-shape.svg │ │ │ ├── on-text.png │ │ │ ├── on-text.svg │ │ │ ├── on-tspan.png │ │ │ └── on-tspan.svg │ │ ├── defs │ │ │ ├── ignore-shapes-inside-defs.png │ │ │ ├── ignore-shapes-inside-defs.svg │ │ │ ├── multiple-defs.png │ │ │ ├── multiple-defs.svg │ │ │ ├── nested-defs.png │ │ │ ├── nested-defs.svg │ │ │ ├── out-of-order.png │ │ │ ├── out-of-order.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── style-inheritance-on-text.png │ │ │ ├── style-inheritance-on-text.svg │ │ │ ├── style-inheritance.png │ │ │ └── style-inheritance.svg │ │ ├── g │ │ │ ├── deeply-nested-groups.png │ │ │ ├── deeply-nested-groups.svg │ │ │ ├── recursive-inheritance.png │ │ │ └── recursive-inheritance.svg │ │ ├── image │ │ │ ├── embedded-16bit-png.png │ │ │ ├── embedded-16bit-png.svg │ │ │ ├── embedded-gif.png │ │ │ ├── embedded-gif.svg │ │ │ ├── embedded-jpeg-as-image-jpeg.png │ │ │ ├── embedded-jpeg-as-image-jpeg.svg │ │ │ ├── embedded-jpeg-as-image-jpg.png │ │ │ ├── embedded-jpeg-as-image-jpg.svg │ │ │ ├── embedded-jpeg-luma.png │ │ │ ├── embedded-jpeg-luma.svg │ │ │ ├── embedded-jpeg-without-mime.png │ │ │ ├── embedded-jpeg-without-mime.svg │ │ │ ├── embedded-png-luma.png │ │ │ ├── embedded-png-luma.svg │ │ │ ├── embedded-png.png │ │ │ ├── embedded-png.svg │ │ │ ├── embedded-svg-with-text.png │ │ │ ├── embedded-svg-with-text.svg │ │ │ ├── embedded-svg-without-mime.png │ │ │ ├── embedded-svg-without-mime.svg │ │ │ ├── embedded-svg.png │ │ │ ├── embedded-svg.svg │ │ │ ├── embedded-svgz.png │ │ │ ├── embedded-svgz.svg │ │ │ ├── embedded-webp.png │ │ │ ├── embedded-webp.svg │ │ │ ├── external-gif.png │ │ │ ├── external-gif.svg │ │ │ ├── external-jpeg.png │ │ │ ├── external-jpeg.svg │ │ │ ├── external-png.png │ │ │ ├── external-png.svg │ │ │ ├── external-svg-with-transform.png │ │ │ ├── external-svg-with-transform.svg │ │ │ ├── external-svg.png │ │ │ ├── external-svg.svg │ │ │ ├── external-svgz.png │ │ │ ├── external-svgz.svg │ │ │ ├── external-webp.png │ │ │ ├── external-webp.svg │ │ │ ├── float-size.png │ │ │ ├── float-size.svg │ │ │ ├── image-with-float-size-scaling.png │ │ │ ├── image-with-float-size-scaling.svg │ │ │ ├── no-height-non-square.png │ │ │ ├── no-height-non-square.svg │ │ │ ├── no-height-on-svg.png │ │ │ ├── no-height-on-svg.svg │ │ │ ├── no-height.png │ │ │ ├── no-height.svg │ │ │ ├── no-width-and-height-on-svg.png │ │ │ ├── no-width-and-height-on-svg.svg │ │ │ ├── no-width-and-height.png │ │ │ ├── no-width-and-height.svg │ │ │ ├── no-width-on-svg.png │ │ │ ├── no-width-on-svg.svg │ │ │ ├── no-width.png │ │ │ ├── no-width.svg │ │ │ ├── preserveAspectRatio=none-on-svg.png │ │ │ ├── preserveAspectRatio=none-on-svg.svg │ │ │ ├── preserveAspectRatio=none.png │ │ │ ├── preserveAspectRatio=none.svg │ │ │ ├── preserveAspectRatio=xMaxYMax-meet-on-svg.png │ │ │ ├── preserveAspectRatio=xMaxYMax-meet-on-svg.svg │ │ │ ├── preserveAspectRatio=xMaxYMax-meet.png │ │ │ ├── preserveAspectRatio=xMaxYMax-meet.svg │ │ │ ├── preserveAspectRatio=xMaxYMax-slice-on-svg.png │ │ │ ├── preserveAspectRatio=xMaxYMax-slice-on-svg.svg │ │ │ ├── preserveAspectRatio=xMaxYMax-slice.png │ │ │ ├── preserveAspectRatio=xMaxYMax-slice.svg │ │ │ ├── preserveAspectRatio=xMidYMid-meet-on-svg.png │ │ │ ├── preserveAspectRatio=xMidYMid-meet-on-svg.svg │ │ │ ├── preserveAspectRatio=xMidYMid-meet.png │ │ │ ├── preserveAspectRatio=xMidYMid-meet.svg │ │ │ ├── preserveAspectRatio=xMidYMid-slice-on-svg.png │ │ │ ├── preserveAspectRatio=xMidYMid-slice-on-svg.svg │ │ │ ├── preserveAspectRatio=xMidYMid-slice.png │ │ │ ├── preserveAspectRatio=xMidYMid-slice.svg │ │ │ ├── preserveAspectRatio=xMinYMin-meet-on-svg.png │ │ │ ├── preserveAspectRatio=xMinYMin-meet-on-svg.svg │ │ │ ├── preserveAspectRatio=xMinYMin-meet.png │ │ │ ├── preserveAspectRatio=xMinYMin-meet.svg │ │ │ ├── preserveAspectRatio=xMinYMin-slice-on-svg.png │ │ │ ├── preserveAspectRatio=xMinYMin-slice-on-svg.svg │ │ │ ├── preserveAspectRatio=xMinYMin-slice.png │ │ │ ├── preserveAspectRatio=xMinYMin-slice.svg │ │ │ ├── raster-image-and-size-with-odd-numbers.png │ │ │ ├── raster-image-and-size-with-odd-numbers.svg │ │ │ ├── recursive-1.png │ │ │ ├── recursive-1.svg │ │ │ ├── recursive-2.png │ │ │ ├── recursive-2.svg │ │ │ ├── url-to-png.png │ │ │ ├── url-to-png.svg │ │ │ ├── url-to-svg.png │ │ │ ├── url-to-svg.svg │ │ │ ├── width-and-height-set-to-auto.png │ │ │ ├── width-and-height-set-to-auto.svg │ │ │ ├── with-transform.png │ │ │ ├── with-transform.svg │ │ │ ├── with-zero-width-and-height.png │ │ │ ├── with-zero-width-and-height.svg │ │ │ ├── zero-height.png │ │ │ ├── zero-height.svg │ │ │ ├── zero-width.png │ │ │ └── zero-width.svg │ │ ├── style-attribute │ │ │ ├── comments.png │ │ │ ├── comments.svg │ │ │ ├── non-presentational-attribute.png │ │ │ ├── non-presentational-attribute.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── transform.png │ │ │ └── transform.svg │ │ ├── style │ │ │ ├── attribute-selector.png │ │ │ ├── attribute-selector.svg │ │ │ ├── class-selector.png │ │ │ ├── class-selector.svg │ │ │ ├── combined-selectors.png │ │ │ ├── combined-selectors.svg │ │ │ ├── external-CSS.png │ │ │ ├── external-CSS.svg │ │ │ ├── iD-selector.png │ │ │ ├── iD-selector.svg │ │ │ ├── important.png │ │ │ ├── important.svg │ │ │ ├── invalid-type.png │ │ │ ├── invalid-type.svg │ │ │ ├── non-presentational-attribute.png │ │ │ ├── non-presentational-attribute.svg │ │ │ ├── resolve-order.png │ │ │ ├── resolve-order.svg │ │ │ ├── rule-specificity.png │ │ │ ├── rule-specificity.svg │ │ │ ├── style-after-usage.png │ │ │ ├── style-after-usage.svg │ │ │ ├── style-inside-CDATA.png │ │ │ ├── style-inside-CDATA.svg │ │ │ ├── transform.png │ │ │ ├── transform.svg │ │ │ ├── type-selector.png │ │ │ ├── type-selector.svg │ │ │ ├── universal-selector.png │ │ │ ├── universal-selector.svg │ │ │ ├── unresolved-class-selector.png │ │ │ └── unresolved-class-selector.svg │ │ ├── svg │ │ │ ├── attribute-value-via-ENTITY-reference.png │ │ │ ├── attribute-value-via-ENTITY-reference.svg │ │ │ ├── background-color-with-viewbox.png │ │ │ ├── background-color-with-viewbox.svg │ │ │ ├── background-color.png │ │ │ ├── background-color.svg │ │ │ ├── deeply-nested-svg.png │ │ │ ├── deeply-nested-svg.svg │ │ │ ├── elements-via-ENTITY-reference-1.png │ │ │ ├── elements-via-ENTITY-reference-1.svg │ │ │ ├── elements-via-ENTITY-reference-2.png │ │ │ ├── elements-via-ENTITY-reference-2.svg │ │ │ ├── elements-via-ENTITY-reference-3.png │ │ │ ├── elements-via-ENTITY-reference-3.svg │ │ │ ├── explicit-svg-namespace.png │ │ │ ├── explicit-svg-namespace.svg │ │ │ ├── funcIRI-parsing.png │ │ │ ├── funcIRI-parsing.svg │ │ │ ├── funcIRI-with-invalid-characters.png │ │ │ ├── funcIRI-with-invalid-characters.svg │ │ │ ├── funcIRI-with-quotes.png │ │ │ ├── funcIRI-with-quotes.svg │ │ │ ├── invalid-id-attribute-1.png │ │ │ ├── invalid-id-attribute-1.svg │ │ │ ├── invalid-id-attribute-2.png │ │ │ ├── invalid-id-attribute-2.svg │ │ │ ├── mixed-namespaces.png │ │ │ ├── mixed-namespaces.svg │ │ │ ├── negative-size.png │ │ │ ├── negative-size.svg │ │ │ ├── nested-svg-one-with-rect-and-one-with-viewBox.png │ │ │ ├── nested-svg-one-with-rect-and-one-with-viewBox.svg │ │ │ ├── nested-svg-with-overflow-auto.png │ │ │ ├── nested-svg-with-overflow-auto.svg │ │ │ ├── nested-svg-with-overflow-visible.png │ │ │ ├── nested-svg-with-overflow-visible.svg │ │ │ ├── nested-svg-with-rect-and-percent-values.png │ │ │ ├── nested-svg-with-rect-and-percent-values.svg │ │ │ ├── nested-svg-with-rect-and-viewBox-1.png │ │ │ ├── nested-svg-with-rect-and-viewBox-1.svg │ │ │ ├── nested-svg-with-rect-and-viewBox-2.png │ │ │ ├── nested-svg-with-rect-and-viewBox-2.svg │ │ │ ├── nested-svg-with-rect-and-viewBox-3.png │ │ │ ├── nested-svg-with-rect-and-viewBox-3.svg │ │ │ ├── nested-svg-with-rect-and-viewBox-and-percent-values.png │ │ │ ├── nested-svg-with-rect-and-viewBox-and-percent-values.svg │ │ │ ├── nested-svg-with-rect.png │ │ │ ├── nested-svg-with-rect.svg │ │ │ ├── nested-svg-with-relative-width-and-height.png │ │ │ ├── nested-svg-with-relative-width-and-height.svg │ │ │ ├── nested-svg-with-viewBox-and-percent-values.png │ │ │ ├── nested-svg-with-viewBox-and-percent-values.svg │ │ │ ├── nested-svg-with-viewBox.png │ │ │ ├── nested-svg-with-viewBox.svg │ │ │ ├── nested-svg.png │ │ │ ├── nested-svg.svg │ │ │ ├── no-children.png │ │ │ ├── no-children.svg │ │ │ ├── no-size.png │ │ │ ├── no-size.svg │ │ │ ├── not-UTF-8-encoding.png │ │ │ ├── not-UTF-8-encoding.svg │ │ │ ├── preserveAspectRatio-with-viewBox-not-at-zero-pos.png │ │ │ ├── preserveAspectRatio-with-viewBox-not-at-zero-pos.svg │ │ │ ├── preserveAspectRatio=none.png │ │ │ ├── preserveAspectRatio=none.svg │ │ │ ├── preserveAspectRatio=xMaxYMax-slice.png │ │ │ ├── preserveAspectRatio=xMaxYMax-slice.svg │ │ │ ├── preserveAspectRatio=xMaxYMax.png │ │ │ ├── preserveAspectRatio=xMaxYMax.svg │ │ │ ├── preserveAspectRatio=xMidYMid-slice.png │ │ │ ├── preserveAspectRatio=xMidYMid-slice.svg │ │ │ ├── preserveAspectRatio=xMidYMid.png │ │ │ ├── preserveAspectRatio=xMidYMid.svg │ │ │ ├── preserveAspectRatio=xMinYMin-slice.png │ │ │ ├── preserveAspectRatio=xMinYMin-slice.svg │ │ │ ├── preserveAspectRatio=xMinYMin.png │ │ │ ├── preserveAspectRatio=xMinYMin.svg │ │ │ ├── proportional-viewBox.png │ │ │ ├── proportional-viewBox.svg │ │ │ ├── rect-inside-a-non-SVG-element.png │ │ │ ├── rect-inside-a-non-SVG-element.svg │ │ │ ├── viewBox-not-at-zero-pos.png │ │ │ ├── viewBox-not-at-zero-pos.svg │ │ │ ├── xmlns-validation.png │ │ │ ├── xmlns-validation.svg │ │ │ ├── zero-size.png │ │ │ └── zero-size.svg │ │ ├── switch │ │ │ ├── comment-as-first-child.png │ │ │ ├── comment-as-first-child.svg │ │ │ ├── display-none-on-child.png │ │ │ ├── display-none-on-child.svg │ │ │ ├── non-SVG-child.png │ │ │ ├── non-SVG-child.svg │ │ │ ├── requiredFeatures.png │ │ │ ├── requiredFeatures.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── single-child.png │ │ │ ├── single-child.svg │ │ │ ├── systemLanguage.png │ │ │ ├── systemLanguage.svg │ │ │ ├── systemLanguage=en-GB.png │ │ │ ├── systemLanguage=en-GB.svg │ │ │ ├── systemLanguage=en-US.png │ │ │ ├── systemLanguage=en-US.svg │ │ │ ├── systemLanguage=en.png │ │ │ ├── systemLanguage=en.svg │ │ │ ├── systemLanguage=ru-Ru.png │ │ │ ├── systemLanguage=ru-Ru.svg │ │ │ ├── systemLanguage=ru-en.png │ │ │ ├── systemLanguage=ru-en.svg │ │ │ ├── with-attributes.png │ │ │ └── with-attributes.svg │ │ ├── symbol │ │ │ ├── content-outside-the-viewbox.png │ │ │ ├── content-outside-the-viewbox.svg │ │ │ ├── indirect-symbol-reference.png │ │ │ ├── indirect-symbol-reference.svg │ │ │ ├── opacity-on-symbol-with-viewBox.png │ │ │ ├── opacity-on-symbol-with-viewBox.svg │ │ │ ├── opacity-on-symbol.png │ │ │ ├── opacity-on-symbol.svg │ │ │ ├── opacity-on-use-and-symbol.png │ │ │ ├── opacity-on-use-and-symbol.svg │ │ │ ├── opacity-on-use.png │ │ │ ├── opacity-on-use.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── unused-symbol.png │ │ │ ├── unused-symbol.svg │ │ │ ├── with-custom-use-size.png │ │ │ ├── with-custom-use-size.svg │ │ │ ├── with-overflow-visible.png │ │ │ ├── with-overflow-visible.svg │ │ │ ├── with-size-on-use-and-relative-units.png │ │ │ ├── with-size-on-use-and-relative-units.svg │ │ │ ├── with-transform-on-use-no-size.png │ │ │ ├── with-transform-on-use-no-size.svg │ │ │ ├── with-transform-on-use.png │ │ │ ├── with-transform-on-use.svg │ │ │ ├── with-transform.png │ │ │ ├── with-transform.svg │ │ │ ├── with-viewBox-and-custom-use-rect.png │ │ │ ├── with-viewBox-and-custom-use-rect.svg │ │ │ ├── with-viewBox-and-custom-use-size.png │ │ │ ├── with-viewBox-and-custom-use-size.svg │ │ │ ├── with-viewBox.png │ │ │ └── with-viewBox.svg │ │ ├── systemLanguage │ │ │ ├── en-GB.png │ │ │ ├── en-GB.svg │ │ │ ├── en-US.png │ │ │ ├── en-US.svg │ │ │ ├── en.png │ │ │ ├── en.svg │ │ │ ├── on-clipPath.png │ │ │ ├── on-clipPath.svg │ │ │ ├── on-defs.png │ │ │ ├── on-defs.svg │ │ │ ├── on-linearGradient.png │ │ │ ├── on-linearGradient.svg │ │ │ ├── on-svg.png │ │ │ ├── on-svg.svg │ │ │ ├── on-tspan.png │ │ │ ├── on-tspan.svg │ │ │ ├── ru-Ru.png │ │ │ ├── ru-Ru.svg │ │ │ ├── ru-en.png │ │ │ └── ru-en.svg │ │ ├── transform-origin │ │ │ ├── bottom.png │ │ │ ├── bottom.svg │ │ │ ├── center.png │ │ │ ├── center.svg │ │ │ ├── keyword-length.png │ │ │ ├── keyword-length.svg │ │ │ ├── left.png │ │ │ ├── left.svg │ │ │ ├── length-percent.png │ │ │ ├── length-percent.svg │ │ │ ├── length-px.png │ │ │ ├── length-px.svg │ │ │ ├── no-transform.png │ │ │ ├── no-transform.svg │ │ │ ├── on-clippath-objectBoundingBox.png │ │ │ ├── on-clippath-objectBoundingBox.svg │ │ │ ├── on-clippath.png │ │ │ ├── on-clippath.svg │ │ │ ├── on-gradient-object-bounding-box.png │ │ │ ├── on-gradient-object-bounding-box.svg │ │ │ ├── on-gradient-user-space-on-use.png │ │ │ ├── on-gradient-user-space-on-use.svg │ │ │ ├── on-group.png │ │ │ ├── on-group.svg │ │ │ ├── on-image.png │ │ │ ├── on-image.svg │ │ │ ├── on-pattern-object-bounding-box.png │ │ │ ├── on-pattern-object-bounding-box.svg │ │ │ ├── on-pattern-user-space-on-use.png │ │ │ ├── on-pattern-user-space-on-use.svg │ │ │ ├── on-shape.png │ │ │ ├── on-shape.svg │ │ │ ├── on-text-path.png │ │ │ ├── on-text-path.svg │ │ │ ├── on-text.png │ │ │ ├── on-text.svg │ │ │ ├── right-bottom.png │ │ │ ├── right-bottom.svg │ │ │ ├── right.png │ │ │ ├── right.svg │ │ │ ├── top-left.png │ │ │ ├── top-left.svg │ │ │ ├── top.png │ │ │ ├── top.svg │ │ │ ├── transform-on-parent.png │ │ │ └── transform-on-parent.svg │ │ ├── transform │ │ │ ├── default.png │ │ │ ├── default.svg │ │ │ ├── direct-transform.png │ │ │ ├── direct-transform.svg │ │ │ ├── empty.png │ │ │ ├── empty.svg │ │ │ ├── extra-spaces.png │ │ │ ├── extra-spaces.svg │ │ │ ├── matrix-no-commas.png │ │ │ ├── matrix-no-commas.svg │ │ │ ├── matrix.png │ │ │ ├── matrix.svg │ │ │ ├── nested-transforms-1.png │ │ │ ├── nested-transforms-1.svg │ │ │ ├── nested-transforms-2.png │ │ │ ├── nested-transforms-2.svg │ │ │ ├── numeric-character-references.png │ │ │ ├── numeric-character-references.svg │ │ │ ├── rotate-at-position.png │ │ │ ├── rotate-at-position.svg │ │ │ ├── rotate.png │ │ │ ├── rotate.svg │ │ │ ├── scale-without-Y.png │ │ │ ├── scale-without-Y.svg │ │ │ ├── scale.png │ │ │ ├── scale.svg │ │ │ ├── skewX.png │ │ │ ├── skewX.svg │ │ │ ├── skewY.png │ │ │ ├── skewY.svg │ │ │ ├── transform-list.png │ │ │ ├── transform-list.svg │ │ │ ├── translate-without-Y.png │ │ │ ├── translate-without-Y.svg │ │ │ ├── translate.png │ │ │ ├── translate.svg │ │ │ ├── zeroed-matrix.png │ │ │ └── zeroed-matrix.svg │ │ └── use │ │ │ ├── cSS-rules.png │ │ │ ├── cSS-rules.svg │ │ │ ├── complex-style-resolving-order.png │ │ │ ├── complex-style-resolving-order.svg │ │ │ ├── display-inheritance.png │ │ │ ├── display-inheritance.svg │ │ │ ├── duplicated-IDs.png │ │ │ ├── duplicated-IDs.svg │ │ │ ├── fill-opacity-inheritance.png │ │ │ ├── fill-opacity-inheritance.svg │ │ │ ├── from-defs.png │ │ │ ├── from-defs.svg │ │ │ ├── href-without-the-xlink-namespace.png │ │ │ ├── href-without-the-xlink-namespace.svg │ │ │ ├── indirect-recursive-1.png │ │ │ ├── indirect-recursive-1.svg │ │ │ ├── indirect-recursive-2.png │ │ │ ├── indirect-recursive-2.svg │ │ │ ├── indirect-recursive-3.png │ │ │ ├── indirect-recursive-3.svg │ │ │ ├── indirect.png │ │ │ ├── indirect.svg │ │ │ ├── nested-recursive-1.png │ │ │ ├── nested-recursive-1.svg │ │ │ ├── nested-recursive-2.png │ │ │ ├── nested-recursive-2.svg │ │ │ ├── nested-xlink-to-svg-element-with-rect-and-size.png │ │ │ ├── nested-xlink-to-svg-element-with-rect-and-size.svg │ │ │ ├── non-linear-order.png │ │ │ ├── non-linear-order.svg │ │ │ ├── opacity-inheritance.png │ │ │ ├── opacity-inheritance.svg │ │ │ ├── position-inheritance.png │ │ │ ├── position-inheritance.svg │ │ │ ├── recursive.png │ │ │ ├── recursive.svg │ │ │ ├── self-recursive.png │ │ │ ├── self-recursive.svg │ │ │ ├── simple-case.png │ │ │ ├── simple-case.svg │ │ │ ├── stroke-opacity-inheritance.png │ │ │ ├── stroke-opacity-inheritance.svg │ │ │ ├── style-inheritance-1.png │ │ │ ├── style-inheritance-1.svg │ │ │ ├── style-inheritance-2.png │ │ │ ├── style-inheritance-2.svg │ │ │ ├── style-inheritance-3.png │ │ │ ├── style-inheritance-3.svg │ │ │ ├── transform-attribute-1.png │ │ │ ├── transform-attribute-1.svg │ │ │ ├── transform-attribute-2.png │ │ │ ├── transform-attribute-2.svg │ │ │ ├── transform-inheritance.png │ │ │ ├── transform-inheritance.svg │ │ │ ├── with-currentColor.png │ │ │ ├── with-currentColor.svg │ │ │ ├── with-size.png │ │ │ ├── with-size.svg │ │ │ ├── xlink-to-a-child-of-a-non-SVG-element.png │ │ │ ├── xlink-to-a-child-of-a-non-SVG-element.svg │ │ │ ├── xlink-to-a-child-of-an-invalid-element.png │ │ │ ├── xlink-to-a-child-of-an-invalid-element.svg │ │ │ ├── xlink-to-an-external-file.png │ │ │ ├── xlink-to-an-external-file.svg │ │ │ ├── xlink-to-an-invalid-element-1.png │ │ │ ├── xlink-to-an-invalid-element-1.svg │ │ │ ├── xlink-to-an-invalid-element-2.png │ │ │ ├── xlink-to-an-invalid-element-2.svg │ │ │ ├── xlink-to-an-invalid-element-3.png │ │ │ ├── xlink-to-an-invalid-element-3.svg │ │ │ ├── xlink-to-svg-element-with-rect-only-width.png │ │ │ ├── xlink-to-svg-element-with-rect-only-width.svg │ │ │ ├── xlink-to-svg-element-with-rect.png │ │ │ ├── xlink-to-svg-element-with-rect.svg │ │ │ ├── xlink-to-svg-element-with-viewBox.png │ │ │ ├── xlink-to-svg-element-with-viewBox.svg │ │ │ ├── xlink-to-svg-element-with-width-height-on-use.png │ │ │ ├── xlink-to-svg-element-with-width-height-on-use.svg │ │ │ ├── xlink-to-svg-element-with-x-y-on-use.png │ │ │ ├── xlink-to-svg-element-with-x-y-on-use.svg │ │ │ ├── xlink-to-svg-element.png │ │ │ └── xlink-to-svg-element.svg │ │ └── text │ │ ├── alignment-baseline │ │ ├── after-edge.png │ │ ├── after-edge.svg │ │ ├── alphabetic.png │ │ ├── alphabetic.svg │ │ ├── auto.png │ │ ├── auto.svg │ │ ├── baseline.png │ │ ├── baseline.svg │ │ ├── before-edge.png │ │ ├── before-edge.svg │ │ ├── central.png │ │ ├── central.svg │ │ ├── hanging-and-baseline-shift-eq-20-on-tspan.png │ │ ├── hanging-and-baseline-shift-eq-20-on-tspan.svg │ │ ├── hanging-on-tspan.png │ │ ├── hanging-on-tspan.svg │ │ ├── hanging-on-vertical.png │ │ ├── hanging-on-vertical.svg │ │ ├── hanging-with-underline.png │ │ ├── hanging-with-underline.svg │ │ ├── hanging.png │ │ ├── hanging.svg │ │ ├── ideographic.png │ │ ├── ideographic.svg │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── mathematical.png │ │ ├── mathematical.svg │ │ ├── middle-on-textPath.png │ │ ├── middle-on-textPath.svg │ │ ├── middle.png │ │ ├── middle.svg │ │ ├── text-after-edge.png │ │ ├── text-after-edge.svg │ │ ├── text-before-edge.png │ │ ├── text-before-edge.svg │ │ ├── two-textPath-with-middle-on-first.png │ │ └── two-textPath-with-middle-on-first.svg │ │ ├── baseline-shift │ │ ├── -10.png │ │ ├── -10.svg │ │ ├── -50percent.png │ │ ├── -50percent.svg │ │ ├── 0.png │ │ ├── 0.svg │ │ ├── 10.png │ │ ├── 10.svg │ │ ├── 2mm.png │ │ ├── 2mm.svg │ │ ├── 50percent.png │ │ ├── 50percent.svg │ │ ├── baseline.png │ │ ├── baseline.svg │ │ ├── deeply-nested-super.png │ │ ├── deeply-nested-super.svg │ │ ├── inheritance-1.png │ │ ├── inheritance-1.svg │ │ ├── inheritance-2.png │ │ ├── inheritance-2.svg │ │ ├── inheritance-3.png │ │ ├── inheritance-3.svg │ │ ├── inheritance-4.png │ │ ├── inheritance-4.svg │ │ ├── inheritance-5.png │ │ ├── inheritance-5.svg │ │ ├── invalid-value.png │ │ ├── invalid-value.svg │ │ ├── mixed-nested.png │ │ ├── mixed-nested.svg │ │ ├── nested-length.png │ │ ├── nested-length.svg │ │ ├── nested-super.png │ │ ├── nested-super.svg │ │ ├── nested-with-baseline-1.png │ │ ├── nested-with-baseline-1.svg │ │ ├── nested-with-baseline-2.png │ │ ├── nested-with-baseline-2.svg │ │ ├── sub.png │ │ ├── sub.svg │ │ ├── super.png │ │ ├── super.svg │ │ ├── with-rotate.png │ │ └── with-rotate.svg │ │ ├── color-font │ │ ├── cbdt.png │ │ ├── cbdt.svg │ │ ├── colrv0.png │ │ ├── colrv0.svg │ │ ├── colrv1.png │ │ ├── colrv1.svg │ │ ├── compound-emojis-and-coordinates-list.png │ │ ├── compound-emojis-and-coordinates-list.svg │ │ ├── compound-emojis.png │ │ ├── compound-emojis.svg │ │ ├── mixed-text-rtl.png │ │ ├── mixed-text-rtl.svg │ │ ├── mixed-text.png │ │ ├── mixed-text.svg │ │ ├── sbix.png │ │ ├── sbix.svg │ │ ├── svg.png │ │ ├── svg.svg │ │ ├── writing-mode=tb.png │ │ └── writing-mode=tb.svg │ │ ├── direction │ │ ├── rtl-with-vertical-writing-mode.png │ │ ├── rtl-with-vertical-writing-mode.svg │ │ ├── rtl.png │ │ └── rtl.svg │ │ ├── dominant-baseline │ │ ├── alignment-baseline-and-baseline-shift-on-tspans.png │ │ ├── alignment-baseline-and-baseline-shift-on-tspans.svg │ │ ├── alignment-baseline=baseline-on-tspan.png │ │ ├── alignment-baseline=baseline-on-tspan.svg │ │ ├── alphabetic.png │ │ ├── alphabetic.svg │ │ ├── auto.png │ │ ├── auto.svg │ │ ├── central.png │ │ ├── central.svg │ │ ├── complex.png │ │ ├── complex.svg │ │ ├── different-alignment-baseline-on-tspan.png │ │ ├── different-alignment-baseline-on-tspan.svg │ │ ├── dummy-tspan.png │ │ ├── dummy-tspan.svg │ │ ├── equal-alignment-baseline-on-tspan.png │ │ ├── equal-alignment-baseline-on-tspan.svg │ │ ├── hanging.png │ │ ├── hanging.svg │ │ ├── ideographic.png │ │ ├── ideographic.svg │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── mathematical.png │ │ ├── mathematical.svg │ │ ├── middle.png │ │ ├── middle.svg │ │ ├── nested.png │ │ ├── nested.svg │ │ ├── no-change.png │ │ ├── no-change.svg │ │ ├── reset-size.png │ │ ├── reset-size.svg │ │ ├── sequential.png │ │ ├── sequential.svg │ │ ├── text-after-edge.png │ │ ├── text-after-edge.svg │ │ ├── text-before-edge.png │ │ ├── text-before-edge.svg │ │ ├── use-script.png │ │ └── use-script.svg │ │ ├── font-family │ │ ├── bold-sans-serif.png │ │ ├── bold-sans-serif.svg │ │ ├── cursive.png │ │ ├── cursive.svg │ │ ├── double-quoted.png │ │ ├── double-quoted.svg │ │ ├── fallback-1.png │ │ ├── fallback-1.svg │ │ ├── fallback-2.png │ │ ├── fallback-2.svg │ │ ├── fantasy.png │ │ ├── fantasy.svg │ │ ├── font-list.png │ │ ├── font-list.svg │ │ ├── monospace.png │ │ ├── monospace.svg │ │ ├── noto-sans.png │ │ ├── noto-sans.svg │ │ ├── sans-serif.png │ │ ├── sans-serif.svg │ │ ├── serif.png │ │ ├── serif.svg │ │ ├── source-sans-pro.png │ │ └── source-sans-pro.svg │ │ ├── font-kerning │ │ ├── arabic-script.png │ │ ├── arabic-script.svg │ │ ├── as-property.png │ │ ├── as-property.svg │ │ ├── none.png │ │ └── none.svg │ │ ├── font-size-adjust │ │ ├── simple-case.png │ │ └── simple-case.svg │ │ ├── font-size │ │ ├── em-nested-and-mixed.png │ │ ├── em-nested-and-mixed.svg │ │ ├── em-on-the-root-element.png │ │ ├── em-on-the-root-element.svg │ │ ├── em.png │ │ ├── em.svg │ │ ├── ex-nested-and-mixed.png │ │ ├── ex-nested-and-mixed.svg │ │ ├── ex-on-the-root-element.png │ │ ├── ex-on-the-root-element.svg │ │ ├── ex.png │ │ ├── ex.svg │ │ ├── inheritance.png │ │ ├── inheritance.svg │ │ ├── mixed-values.png │ │ ├── mixed-values.svg │ │ ├── named-value-without-a-parent.png │ │ ├── named-value-without-a-parent.svg │ │ ├── named-value.png │ │ ├── named-value.svg │ │ ├── negative-size.png │ │ ├── negative-size.svg │ │ ├── nested-percent-values-1.png │ │ ├── nested-percent-values-1.svg │ │ ├── nested-percent-values-2.png │ │ ├── nested-percent-values-2.svg │ │ ├── percent-value-without-a-parent.png │ │ ├── percent-value-without-a-parent.svg │ │ ├── percent-value.png │ │ ├── percent-value.svg │ │ ├── simple-case.png │ │ ├── simple-case.svg │ │ ├── zero-size-on-parent-1.png │ │ ├── zero-size-on-parent-1.svg │ │ ├── zero-size-on-parent-2.png │ │ ├── zero-size-on-parent-2.svg │ │ ├── zero-size-on-parent-3.png │ │ ├── zero-size-on-parent-3.svg │ │ ├── zero-size.png │ │ └── zero-size.svg │ │ ├── font-stretch │ │ ├── extra-condensed.png │ │ ├── extra-condensed.svg │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── narrower.png │ │ └── narrower.svg │ │ ├── font-style │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── italic.png │ │ ├── italic.svg │ │ ├── oblique.png │ │ └── oblique.svg │ │ ├── font-variant │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── small-caps.png │ │ └── small-caps.svg │ │ ├── font-weight │ │ ├── 650.png │ │ ├── 650.svg │ │ ├── 700.png │ │ ├── 700.svg │ │ ├── bold.png │ │ ├── bold.svg │ │ ├── bolder-with-clamping.png │ │ ├── bolder-with-clamping.svg │ │ ├── bolder-without-parent.png │ │ ├── bolder-without-parent.svg │ │ ├── bolder.png │ │ ├── bolder.svg │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── invalid-number-1.png │ │ ├── invalid-number-1.svg │ │ ├── lighter-with-clamping.png │ │ ├── lighter-with-clamping.svg │ │ ├── lighter-without-parent.png │ │ ├── lighter-without-parent.svg │ │ ├── lighter.png │ │ ├── lighter.svg │ │ ├── normal.png │ │ └── normal.svg │ │ ├── font │ │ ├── font-shorthand.png │ │ ├── font-shorthand.svg │ │ ├── simple-case.png │ │ └── simple-case.svg │ │ ├── glyph-orientation-horizontal │ │ ├── simple-case.png │ │ └── simple-case.svg │ │ ├── glyph-orientation-vertical │ │ ├── simple-case.png │ │ └── simple-case.svg │ │ ├── kerning │ │ ├── 0.png │ │ ├── 0.svg │ │ ├── 10percent.png │ │ └── 10percent.svg │ │ ├── lengthAdjust │ │ ├── spacingAndGlyphs.png │ │ ├── spacingAndGlyphs.svg │ │ ├── text-on-path.png │ │ ├── text-on-path.svg │ │ ├── vertical.png │ │ ├── vertical.svg │ │ ├── with-underline.png │ │ └── with-underline.svg │ │ ├── letter-spacing │ │ ├── -3.png │ │ ├── -3.svg │ │ ├── 0.png │ │ ├── 0.svg │ │ ├── 1mm.png │ │ ├── 1mm.svg │ │ ├── 3.png │ │ ├── 3.svg │ │ ├── 5percent.png │ │ ├── 5percent.svg │ │ ├── filter-bbox.png │ │ ├── filter-bbox.svg │ │ ├── large-negative.png │ │ ├── large-negative.svg │ │ ├── mixed-scripts.png │ │ ├── mixed-scripts.svg │ │ ├── mixed-spacing.png │ │ ├── mixed-spacing.svg │ │ ├── non-ASCII-character.png │ │ ├── non-ASCII-character.svg │ │ ├── normal.png │ │ ├── normal.svg │ │ ├── on-Arabic.png │ │ └── on-Arabic.svg │ │ ├── text-anchor │ │ ├── coordinates-list.png │ │ ├── coordinates-list.svg │ │ ├── end-on-text.png │ │ ├── end-on-text.svg │ │ ├── end-with-letter-spacing.png │ │ ├── end-with-letter-spacing.svg │ │ ├── inheritance-1.png │ │ ├── inheritance-1.svg │ │ ├── inheritance-2.png │ │ ├── inheritance-2.svg │ │ ├── inheritance-3.png │ │ ├── inheritance-3.svg │ │ ├── invalid-value-on-text.png │ │ ├── invalid-value-on-text.svg │ │ ├── middle-on-text.png │ │ ├── middle-on-text.svg │ │ ├── on-the-first-tspan.png │ │ ├── on-the-first-tspan.svg │ │ ├── on-tspan-with-arabic.png │ │ ├── on-tspan-with-arabic.svg │ │ ├── on-tspan.png │ │ ├── on-tspan.svg │ │ ├── start-on-text.png │ │ ├── start-on-text.svg │ │ ├── text-anchor-not-on-text-chunk.png │ │ └── text-anchor-not-on-text-chunk.svg │ │ ├── text-decoration │ │ ├── all-types-inline-comma-separated.png │ │ ├── all-types-inline-comma-separated.svg │ │ ├── all-types-inline-no-spaces.png │ │ ├── all-types-inline-no-spaces.svg │ │ ├── all-types-inline.png │ │ ├── all-types-inline.svg │ │ ├── all-types-nested.png │ │ ├── all-types-nested.svg │ │ ├── indirect-with-multiple-colors.png │ │ ├── indirect-with-multiple-colors.svg │ │ ├── indirect.png │ │ ├── indirect.svg │ │ ├── line-through.png │ │ ├── line-through.svg │ │ ├── outside-the-text-element.png │ │ ├── outside-the-text-element.svg │ │ ├── overline.png │ │ ├── overline.svg │ │ ├── style-resolving-1.png │ │ ├── style-resolving-1.svg │ │ ├── style-resolving-2.png │ │ ├── style-resolving-2.svg │ │ ├── style-resolving-3.png │ │ ├── style-resolving-3.svg │ │ ├── style-resolving-4.png │ │ ├── style-resolving-4.svg │ │ ├── tspan-decoration.png │ │ ├── tspan-decoration.svg │ │ ├── underline-with-dy-list-1.png │ │ ├── underline-with-dy-list-1.svg │ │ ├── underline-with-dy-list-2.png │ │ ├── underline-with-dy-list-2.svg │ │ ├── underline-with-rotate-list-3.png │ │ ├── underline-with-rotate-list-3.svg │ │ ├── underline-with-rotate-list-4.png │ │ ├── underline-with-rotate-list-4.svg │ │ ├── underline-with-y-list.png │ │ ├── underline-with-y-list.svg │ │ ├── underline.png │ │ ├── underline.svg │ │ ├── with-textLength-on-a-single-character.png │ │ └── with-textLength-on-a-single-character.svg │ │ ├── text-rendering │ │ ├── geometricPrecision.png │ │ ├── geometricPrecision.svg │ │ ├── on-tspan.png │ │ ├── on-tspan.svg │ │ ├── optimizeLegibility.png │ │ ├── optimizeLegibility.svg │ │ ├── optimizeSpeed.png │ │ ├── optimizeSpeed.svg │ │ ├── with-underline.png │ │ └── with-underline.svg │ │ ├── text │ │ ├── bidi-reordering.png │ │ ├── bidi-reordering.svg │ │ ├── complex-grapheme-split-by-tspan.png │ │ ├── complex-grapheme-split-by-tspan.svg │ │ ├── complex-graphemes-and-coordinates-list.png │ │ ├── complex-graphemes-and-coordinates-list.svg │ │ ├── complex-graphemes.png │ │ ├── complex-graphemes.svg │ │ ├── dx-and-dy-instead-of-x-and-y.png │ │ ├── dx-and-dy-instead-of-x-and-y.svg │ │ ├── dx-and-dy-with-less-values-than-characters.png │ │ ├── dx-and-dy-with-less-values-than-characters.svg │ │ ├── dx-and-dy-with-more-values-than-characters.png │ │ ├── dx-and-dy-with-more-values-than-characters.svg │ │ ├── dx-and-dy-with-multiple-values.png │ │ ├── dx-and-dy-with-multiple-values.svg │ │ ├── em-and-ex-coordinates.png │ │ ├── em-and-ex-coordinates.svg │ │ ├── escaped-text-1.png │ │ ├── escaped-text-1.svg │ │ ├── escaped-text-2.png │ │ ├── escaped-text-2.svg │ │ ├── escaped-text-3.png │ │ ├── escaped-text-3.svg │ │ ├── escaped-text-4.png │ │ ├── escaped-text-4.svg │ │ ├── fill-rule=evenodd.png │ │ ├── fill-rule=evenodd.svg │ │ ├── filter-bbox.png │ │ ├── filter-bbox.svg │ │ ├── ligatures-handling-in-mixed-fonts-1.png │ │ ├── ligatures-handling-in-mixed-fonts-1.svg │ │ ├── ligatures-handling-in-mixed-fonts-2.png │ │ ├── ligatures-handling-in-mixed-fonts-2.svg │ │ ├── mm-coordinates.png │ │ ├── mm-coordinates.svg │ │ ├── nested.png │ │ ├── nested.svg │ │ ├── no-coordinates.png │ │ ├── no-coordinates.svg │ │ ├── percent-value-on-dx-and-dy.png │ │ ├── percent-value-on-dx-and-dy.svg │ │ ├── percent-value-on-x-and-y.png │ │ ├── percent-value-on-x-and-y.svg │ │ ├── real-text-height.png │ │ ├── real-text-height.svg │ │ ├── rotate-on-Arabic.png │ │ ├── rotate-on-Arabic.svg │ │ ├── rotate-with-an-invalid-angle.png │ │ ├── rotate-with-an-invalid-angle.svg │ │ ├── rotate-with-less-values-than-characters.png │ │ ├── rotate-with-less-values-than-characters.svg │ │ ├── rotate-with-more-values-than-characters.png │ │ ├── rotate-with-more-values-than-characters.svg │ │ ├── rotate-with-multiple-values-and-complex-text.png │ │ ├── rotate-with-multiple-values-and-complex-text.svg │ │ ├── rotate-with-multiple-values-underline-and-pattern.png │ │ ├── rotate-with-multiple-values-underline-and-pattern.svg │ │ ├── rotate-with-multiple-values.png │ │ ├── rotate-with-multiple-values.svg │ │ ├── rotate.png │ │ ├── rotate.svg │ │ ├── simple-case.png │ │ ├── simple-case.svg │ │ ├── transform.png │ │ ├── transform.svg │ │ ├── x-and-y-with-dx-and-dy-lists.png │ │ ├── x-and-y-with-dx-and-dy-lists.svg │ │ ├── x-and-y-with-dx-and-dy.png │ │ ├── x-and-y-with-dx-and-dy.svg │ │ ├── x-and-y-with-less-values-than-characters.png │ │ ├── x-and-y-with-less-values-than-characters.svg │ │ ├── x-and-y-with-more-values-than-characters.png │ │ ├── x-and-y-with-more-values-than-characters.svg │ │ ├── x-and-y-with-multiple-values-and-arabic-text.png │ │ ├── x-and-y-with-multiple-values-and-arabic-text.svg │ │ ├── x-and-y-with-multiple-values-and-tspan.png │ │ ├── x-and-y-with-multiple-values-and-tspan.svg │ │ ├── x-and-y-with-multiple-values.png │ │ ├── x-and-y-with-multiple-values.svg │ │ ├── xml-lang=ja.png │ │ ├── xml-lang=ja.svg │ │ ├── xml-space.png │ │ ├── xml-space.svg │ │ ├── zalgo.png │ │ └── zalgo.svg │ │ ├── textLength │ │ ├── 150-on-parent.png │ │ ├── 150-on-parent.svg │ │ ├── 150-on-tspan.png │ │ ├── 150-on-tspan.svg │ │ ├── 150.png │ │ ├── 150.svg │ │ ├── 40mm.png │ │ ├── 40mm.svg │ │ ├── 75percent.png │ │ ├── 75percent.svg │ │ ├── arabic-with-lengthAdjust.png │ │ ├── arabic-with-lengthAdjust.svg │ │ ├── arabic.png │ │ ├── arabic.svg │ │ ├── inherit.png │ │ ├── inherit.svg │ │ ├── negative.png │ │ ├── negative.svg │ │ ├── on-a-single-tspan.png │ │ ├── on-a-single-tspan.svg │ │ ├── on-text-and-tspan.png │ │ ├── on-text-and-tspan.svg │ │ ├── zero.png │ │ └── zero.svg │ │ ├── textPath │ │ ├── closed-path.png │ │ ├── closed-path.svg │ │ ├── complex.png │ │ ├── complex.svg │ │ ├── dy-with-tiny-coordinates.png │ │ ├── dy-with-tiny-coordinates.svg │ │ ├── invalid-link.png │ │ ├── invalid-link.svg │ │ ├── invalid-textPath-in-the-middle.png │ │ ├── invalid-textPath-in-the-middle.svg │ │ ├── link-to-rect.png │ │ ├── link-to-rect.svg │ │ ├── m-A-path.png │ │ ├── m-A-path.svg │ │ ├── m-L-Z-path.png │ │ ├── m-L-Z-path.svg │ │ ├── method=stretch.png │ │ ├── method=stretch.svg │ │ ├── mixed-children-1.png │ │ ├── mixed-children-1.svg │ │ ├── mixed-children-2.png │ │ ├── mixed-children-2.svg │ │ ├── nested.png │ │ ├── nested.svg │ │ ├── no-link.png │ │ ├── no-link.svg │ │ ├── path-with-ClosePath.png │ │ ├── path-with-ClosePath.svg │ │ ├── path-with-subpaths-and-startOffset.png │ │ ├── path-with-subpaths-and-startOffset.svg │ │ ├── path-with-subpaths.png │ │ ├── path-with-subpaths.svg │ │ ├── side=right.png │ │ ├── side=right.svg │ │ ├── simple-case.png │ │ ├── simple-case.svg │ │ ├── spacing=auto.png │ │ ├── spacing=auto.svg │ │ ├── startOffset=-100.png │ │ ├── startOffset=-100.svg │ │ ├── startOffset=10percent.png │ │ ├── startOffset=10percent.svg │ │ ├── startOffset=30.png │ │ ├── startOffset=30.svg │ │ ├── startOffset=5mm.png │ │ ├── startOffset=5mm.svg │ │ ├── startOffset=9999.png │ │ ├── startOffset=9999.svg │ │ ├── tspan-with-absolute-position.png │ │ ├── tspan-with-absolute-position.svg │ │ ├── tspan-with-relative-position.png │ │ ├── tspan-with-relative-position.svg │ │ ├── two-paths.png │ │ ├── two-paths.svg │ │ ├── very-long-text.png │ │ ├── very-long-text.svg │ │ ├── with-baseline-shift-and-rotate.png │ │ ├── with-baseline-shift-and-rotate.svg │ │ ├── with-baseline-shift.png │ │ ├── with-baseline-shift.svg │ │ ├── with-big-letter-spacing.png │ │ ├── with-big-letter-spacing.svg │ │ ├── with-coordinates-on-text.png │ │ ├── with-coordinates-on-text.svg │ │ ├── with-coordinates-on-textPath.png │ │ ├── with-coordinates-on-textPath.svg │ │ ├── with-filter.png │ │ ├── with-filter.svg │ │ ├── with-invalid-path-and-xlink-href.png │ │ ├── with-invalid-path-and-xlink-href.svg │ │ ├── with-letter-spacing.png │ │ ├── with-letter-spacing.svg │ │ ├── with-path-and-xlink-href.png │ │ ├── with-path-and-xlink-href.svg │ │ ├── with-path.png │ │ ├── with-path.svg │ │ ├── with-rotate.png │ │ ├── with-rotate.svg │ │ ├── with-text-anchor.png │ │ ├── with-text-anchor.svg │ │ ├── with-transform-on-a-referenced-path.png │ │ ├── with-transform-on-a-referenced-path.svg │ │ ├── with-transform-outside-a-referenced-path.png │ │ ├── with-transform-outside-a-referenced-path.svg │ │ ├── with-underline.png │ │ ├── with-underline.svg │ │ ├── writing-mode=tb.png │ │ └── writing-mode=tb.svg │ │ ├── tref │ │ ├── link-to-a-complex-text.png │ │ ├── link-to-a-complex-text.svg │ │ ├── link-to-a-non-SVG-element.png │ │ ├── link-to-a-non-SVG-element.svg │ │ ├── link-to-a-non-text-element.png │ │ ├── link-to-a-non-text-element.svg │ │ ├── link-to-an-external-file-element.png │ │ ├── link-to-an-external-file-element.svg │ │ ├── link-to-text.png │ │ ├── link-to-text.svg │ │ ├── nested.png │ │ ├── nested.svg │ │ ├── position-attributes.png │ │ ├── position-attributes.svg │ │ ├── style-attributes.png │ │ ├── style-attributes.svg │ │ ├── with-a-title-child.png │ │ ├── with-a-title-child.svg │ │ ├── with-text.png │ │ ├── with-text.svg │ │ ├── xml-space.png │ │ └── xml-space.svg │ │ ├── tspan │ │ ├── bidi-reordering.png │ │ ├── bidi-reordering.svg │ │ ├── mixed-font-size.png │ │ ├── mixed-font-size.svg │ │ ├── mixed-xml-space-1.png │ │ ├── mixed-xml-space-1.svg │ │ ├── mixed-xml-space-2.png │ │ ├── mixed-xml-space-2.svg │ │ ├── mixed-xml-space-3.png │ │ ├── mixed-xml-space-3.svg │ │ ├── mixed.png │ │ ├── mixed.svg │ │ ├── multiple-coordinates.png │ │ ├── multiple-coordinates.svg │ │ ├── nested-rotate.png │ │ ├── nested-rotate.svg │ │ ├── nested-whitespaces.png │ │ ├── nested-whitespaces.svg │ │ ├── nested.png │ │ ├── nested.svg │ │ ├── only-with-y.png │ │ ├── only-with-y.svg │ │ ├── outside-the-text.png │ │ ├── outside-the-text.svg │ │ ├── pseudo-multi-line.png │ │ ├── pseudo-multi-line.svg │ │ ├── rotate-and-display-none.png │ │ ├── rotate-and-display-none.svg │ │ ├── rotate-on-child.png │ │ ├── rotate-on-child.svg │ │ ├── sequential.png │ │ ├── sequential.svg │ │ ├── style-override.png │ │ ├── style-override.svg │ │ ├── text-shaping-across-multiple-tspan-1.png │ │ ├── text-shaping-across-multiple-tspan-1.svg │ │ ├── text-shaping-across-multiple-tspan-2.png │ │ ├── text-shaping-across-multiple-tspan-2.svg │ │ ├── transform.png │ │ ├── transform.svg │ │ ├── tspan-bbox-1.png │ │ ├── tspan-bbox-1.svg │ │ ├── tspan-bbox-2.png │ │ ├── tspan-bbox-2.svg │ │ ├── tspan-span-and-BIDI-reordering.png │ │ ├── with-clip-path.png │ │ ├── with-clip-path.svg │ │ ├── with-dy.png │ │ ├── with-dy.svg │ │ ├── with-filter.png │ │ ├── with-filter.svg │ │ ├── with-mask.png │ │ ├── with-mask.svg │ │ ├── with-opacity.png │ │ ├── with-opacity.svg │ │ ├── with-x-and-y.png │ │ ├── with-x-and-y.svg │ │ ├── without-attributes.png │ │ ├── without-attributes.svg │ │ ├── xml-space-1.png │ │ ├── xml-space-1.svg │ │ ├── xml-space-2.png │ │ └── xml-space-2.svg │ │ ├── unicode-bidi │ │ ├── bidi-override.png │ │ └── bidi-override.svg │ │ ├── word-spacing │ │ ├── -5.png │ │ ├── -5.svg │ │ ├── 0.png │ │ ├── 0.svg │ │ ├── 10.png │ │ ├── 10.svg │ │ ├── 2mm.png │ │ ├── 2mm.svg │ │ ├── 5percent.png │ │ ├── 5percent.svg │ │ ├── large-negative.png │ │ ├── large-negative.svg │ │ ├── normal.png │ │ └── normal.svg │ │ └── writing-mode │ │ ├── arabic-with-rl.png │ │ ├── arabic-with-rl.svg │ │ ├── horizontal-tb.png │ │ ├── horizontal-tb.svg │ │ ├── inheritance.png │ │ ├── inheritance.svg │ │ ├── invalid-value.png │ │ ├── invalid-value.svg │ │ ├── japanese-with-tb.png │ │ ├── japanese-with-tb.svg │ │ ├── lr-tb.png │ │ ├── lr-tb.svg │ │ ├── lr.png │ │ ├── lr.svg │ │ ├── mixed-languages-with-tb-and-underline.png │ │ ├── mixed-languages-with-tb-and-underline.svg │ │ ├── mixed-languages-with-tb.png │ │ ├── mixed-languages-with-tb.svg │ │ ├── on-tspan.png │ │ ├── on-tspan.svg │ │ ├── rl-tb.png │ │ ├── rl-tb.svg │ │ ├── rl.png │ │ ├── rl.svg │ │ ├── tb-and-punctuation.png │ │ ├── tb-and-punctuation.svg │ │ ├── tb-rl.png │ │ ├── tb-rl.svg │ │ ├── tb-with-alignment.png │ │ ├── tb-with-alignment.svg │ │ ├── tb-with-dx-on-second-tspan.png │ │ ├── tb-with-dx-on-second-tspan.svg │ │ ├── tb-with-dx-on-tspan.png │ │ ├── tb-with-dx-on-tspan.svg │ │ ├── tb-with-dy-on-second-tspan.png │ │ ├── tb-with-dy-on-second-tspan.svg │ │ ├── tb-with-rotate-and-underline.png │ │ ├── tb-with-rotate-and-underline.svg │ │ ├── tb-with-rotate.png │ │ ├── tb-with-rotate.svg │ │ ├── tb.png │ │ ├── tb.svg │ │ ├── vertical-lr.png │ │ ├── vertical-lr.svg │ │ ├── vertical-rl.png │ │ └── vertical-rl.svg └── usvg │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── codegen │ ├── Cargo.toml │ ├── README.md │ ├── attributes.txt │ ├── elements.txt │ └── main.rs │ ├── docs │ ├── post-processing.md │ └── spec.adoc │ ├── src │ ├── lib.rs │ ├── main.rs │ ├── parser │ │ ├── clippath.rs │ │ ├── converter.rs │ │ ├── filter.rs │ │ ├── image.rs │ │ ├── marker.rs │ │ ├── mask.rs │ │ ├── mod.rs │ │ ├── options.rs │ │ ├── paint_server.rs │ │ ├── shapes.rs │ │ ├── style.rs │ │ ├── svgtree │ │ │ ├── mod.rs │ │ │ ├── names.rs │ │ │ ├── parse.rs │ │ │ └── text.rs │ │ ├── switch.rs │ │ ├── text.rs │ │ ├── units.rs │ │ └── use_node.rs │ ├── text │ │ ├── colr.rs │ │ ├── flatten.rs │ │ ├── layout.rs │ │ └── mod.rs │ ├── tree │ │ ├── filter.rs │ │ ├── geom.rs │ │ ├── mod.rs │ │ └── text.rs │ └── writer.rs │ └── tests │ ├── files │ ├── clip-path-with-complex-text-expected.svg │ ├── clip-path-with-complex-text.svg │ ├── clip-path-with-object-units-multi-use-expected.svg │ ├── clip-path-with-object-units-multi-use.svg │ ├── clip-path-with-text-expected.svg │ ├── clip-path-with-text.svg │ ├── ellipse-simple-case-expected.svg │ ├── ellipse-simple-case.svg │ ├── filter-id-with-prefix-expected.svg │ ├── filter-id-with-prefix.svg │ ├── filter-with-object-units-multi-use-expected.svg │ ├── filter-with-object-units-multi-use.svg │ ├── generate-id-clip-path-for-symbol-expected.svg │ ├── generate-id-clip-path-for-symbol.svg │ ├── generate-id-filter-function-v1-expected.svg │ ├── generate-id-filter-function-v1.svg │ ├── generate-id-filter-function-v2-expected.svg │ ├── generate-id-filter-function-v2.svg │ ├── mask-with-object-units-multi-use-expected.svg │ ├── mask-with-object-units-multi-use.svg │ ├── optimize-paths-without-markers-expected.svg │ ├── optimize-paths-without-markers.svg │ ├── path-simple-case-expected.svg │ ├── path-simple-case.svg │ ├── preserve-id-clip-path-v1-expected.svg │ ├── preserve-id-clip-path-v1.svg │ ├── preserve-id-clip-path-v2-expected.svg │ ├── preserve-id-clip-path-v2.svg │ ├── preserve-id-fe-image-expected.svg │ ├── preserve-id-fe-image-with-opacity-expected.svg │ ├── preserve-id-fe-image-with-opacity.svg │ ├── preserve-id-fe-image.svg │ ├── preserve-id-filter-expected.svg │ ├── preserve-id-filter.svg │ ├── preserve-id-for-clip-path-in-pattern-expected.svg │ ├── preserve-id-for-clip-path-in-pattern.svg │ ├── preserve-text-in-clip-path-expected.svg │ ├── preserve-text-in-clip-path.svg │ ├── preserve-text-in-mask-expected.svg │ ├── preserve-text-in-mask.svg │ ├── preserve-text-in-pattern-expected.svg │ ├── preserve-text-in-pattern.svg │ ├── preserve-text-multiple-font-families-expected.svg │ ├── preserve-text-multiple-font-families.svg │ ├── preserve-text-on-path-expected.svg │ ├── preserve-text-on-path.svg │ ├── preserve-text-simple-case-expected.svg │ ├── preserve-text-simple-case.svg │ ├── preserve-text-with-complex-text-decoration-expected.svg │ ├── preserve-text-with-complex-text-decoration.svg │ ├── preserve-text-with-dx-and-dy-expected.svg │ ├── preserve-text-with-dx-and-dy.svg │ ├── preserve-text-with-nested-baseline-shift-expected.svg │ ├── preserve-text-with-nested-baseline-shift.svg │ ├── preserve-text-with-rotate-expected.svg │ ├── preserve-text-with-rotate.svg │ ├── text-simple-case-expected.svg │ ├── text-simple-case.svg │ ├── text-with-generated-gradients-expected.svg │ └── text-with-generated-gradients.svg │ ├── parser.rs │ └── write.rs ├── docs ├── svg2-changelog.md └── unsupported.md ├── tools ├── explorer-thumbnailer │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── LICENSE-SUMMARY.txt │ ├── install │ │ └── installer.iss │ └── src │ │ ├── error.rs │ │ ├── interfaces │ │ ├── iinitialize_with_stream.rs │ │ ├── ithumbnail_provider.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── thumbnail_provider.rs │ │ └── utils.rs └── viewsvg │ ├── .gitignore │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── svgview.cpp │ ├── svgview.h │ └── viewsvg.pro └── version-bump.md /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .directory 3 | .DS_Store 4 | .vscode 5 | tools/build-* 6 | -------------------------------------------------------------------------------- /crates/resvg/README.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /crates/resvg/examples/ferris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/examples/ferris.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/fill-and-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/fill-and-stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/filter-on-empty-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/filter-on-empty-group.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/filter-region-precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/filter-region-precision.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/filter-with-transform-on-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/filter-with-transform-on-shape.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/group-with-only-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/group-with-only-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/hidden-element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/hidden-element.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/horizontal-line-no-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/horizontal-line-no-stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/horizontal-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/horizontal-line.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/miter-join-with-acute-angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/miter-join-with-acute-angle.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/paint-order=stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/paint-order=stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/simple-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/simple-stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/stroke-linecap=square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/stroke-linecap=square.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/subpixel-rect-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/subpixel-rect-position.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/transformed-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/transformed-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/extra/translate-outside-viewbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/extra/translate-outside-viewbox.png -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/Amiri-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/Amiri-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/CFF-and-SBIX.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/CFF-and-SBIX.otf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/MPLUS1p-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/MPLUS1p-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoColorEmojiCBDT.subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoColorEmojiCBDT.subset.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoColorEmojiCOLR.subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoColorEmojiCOLR.subset.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoMono-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Black.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Light.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSansDevanagari-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSansDevanagari-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/SedgwickAveDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/SedgwickAveDisplay-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/TwitterColorEmoji.subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/TwitterColorEmoji.subset.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/fonts/Yellowtail-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/fonts/Yellowtail-Regular.ttf -------------------------------------------------------------------------------- /crates/resvg/tests/resources/green.css: -------------------------------------------------------------------------------- 1 | #rect1 { fill:green; } 2 | -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image-63x61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image-63x61.png -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image.gif -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image.jpg -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image.png -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image.svgz -------------------------------------------------------------------------------- /crates/resvg/tests/resources/image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/resources/image.webp -------------------------------------------------------------------------------- /crates/resvg/tests/resources/simple-text.svg: -------------------------------------------------------------------------------- 1 | 2 | Text 3 | 4 | -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/enable-background/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/enable-background/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/enable-background/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/enable-background/new.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=color-burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=color-burn.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=darken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=darken.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=hue.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=lighten.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=multiply.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feBlend/mode=screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feBlend/mode=screen.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feColorMatrix/type=matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feColorMatrix/type=matrix.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/operator=atop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/operator=atop.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/operator=in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/operator=in.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/operator=out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/operator=out.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/operator=over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/operator=over.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feComposite/operator=xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feComposite/operator=xor.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feConvolveMatrix/bias=0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feConvolveMatrix/bias=0.5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feConvolveMatrix/order=0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feConvolveMatrix/order=0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feConvolveMatrix/order=4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feConvolveMatrix/order=4.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feDropShadow/hsla-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feDropShadow/hsla-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feDropShadow/with-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feDropShadow/with-offset.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feFlood/complex-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feFlood/complex-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feFlood/default-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feFlood/default-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feFlood/partial-subregion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feFlood/partial-subregion.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feFlood/seagreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feFlood/seagreen.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feFlood/with-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feFlood/with-opacity.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/chained-feImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/chained-feImage.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/embedded-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/embedded-png.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/link-to-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/link-to-g.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/link-to-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/link-to-use.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/recursive-links-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/recursive-links-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/recursive-links-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/recursive-links-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/self-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/self-recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-subregion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-subregion-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-subregion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-subregion-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-subregion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-subregion-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-subregion-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-subregion-4.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-subregion-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-subregion-5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feImage/with-x-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feImage/with-x-y.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMerge/complex-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMerge/complex-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/empty-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/empty-radius.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/huge-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/huge-radius.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/no-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/no-radius.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/radius=0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/radius=0.5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/radius=1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/radius=1-10.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/radius=10-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/radius=10-0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/radius=10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/radius=10-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feMorphology/zero-radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feMorphology/zero-radius.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feOffset/negative-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feOffset/negative-offset.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feOffset/no-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feOffset/no-offset.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feOffset/only-dx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feOffset/only-dx.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feOffset/only-dy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feOffset/only-dy.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feOffset/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feOffset/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/complex-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/complex-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/empty-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/empty-region.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/with-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/with-region.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/with-subregion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/with-subregion-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/with-subregion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/with-subregion-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTile/with-subregion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTile/with-subregion-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/numOctaves=0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/numOctaves=0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/numOctaves=5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/numOctaves=5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/seed=-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/seed=-20.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/seed=1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/seed=1.5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/seed=20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/seed=20.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/feTurbulence/type=invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/feTurbulence/type=invalid.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter-functions/two-urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter-functions/two-urls.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/global-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/global-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/huge-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/huge-region.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in-to-invalid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in-to-invalid-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in-to-invalid-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in-to-invalid-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in=BackgroundAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in=BackgroundAlpha.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in=BackgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in=BackgroundImage.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in=FillPaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in=FillPaint.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in=SourceAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in=SourceAlpha.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/in=StrokePaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/in=StrokePaint.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/initial-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/initial-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/invalid-FuncIRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/invalid-FuncIRI.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/invalid-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/invalid-region.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/invalid-subregion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/invalid-subregion.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/invalid-xlink-href.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/invalid-xlink-href.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/negative-subregion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/negative-subregion.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/no-children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/no-children.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/on-a-thin-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/on-a-thin-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/on-a-vertical-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/on-a-vertical-line.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/on-the-root-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/on-the-root-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/path-bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/path-bbox.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/region-with-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/region-with-stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/transform-on-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/transform-on-shape.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-clip-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-clip-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-mask.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-region.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-subregion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-subregion-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-subregion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-subregion-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/filter/with-subregion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/filter/with-subregion-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/hsla-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/hsla-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/inheritance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/inheritance-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/inheritance-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/inheritance-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/inheritance-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/inheritance-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/inheritance-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/inheritance-4.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/inheritance-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/inheritance-5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-color/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-color/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-opacity/50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-opacity/50percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/filters/flood-opacity/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/filters/flood-opacity/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clip/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clip/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/circle-shorthand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/circle-shorthand.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/invalid-FuncIRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/invalid-FuncIRI.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/mixed-clip-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/mixed-clip-rule.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/nested-clip-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/nested-clip-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/no-children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/no-children.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/self-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/self-recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/clipPath/with-use-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/clipPath/with-use-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/invalid-FuncIRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/invalid-FuncIRI.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/invalid-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/invalid-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/invisible-child-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/invisible-child-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/invisible-child-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/invisible-child-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-on-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-on-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-on-self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-on-self.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-type-in-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-type-in-style.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-type=alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-type=alpha.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-type=invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-type=invalid.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/mask-type=luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/mask-type=luminance.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/no-children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/no-children.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/on-a-horizontal-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/on-a-horizontal-line.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/on-a-small-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/on-a-small-object.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/recursive-on-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/recursive-on-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/recursive-on-self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/recursive-on-self.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/self-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/self-recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/transform-on-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/transform-on-shape.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/with-clip-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/with-clip-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/with-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/with-image.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/with-opacity-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/with-opacity-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/with-opacity-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/with-opacity-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/masking/mask/with-opacity-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/masking/mask/with-opacity-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/paint-servers/stop/hsla-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/paint-servers/stop/hsla-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/color/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/color/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/color/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/color/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/context/in-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/context/in-marker.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/context/in-nested-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/context/in-nested-use.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/context/in-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/context/in-use.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/context/with-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/context/with-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/context/with-viewbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/context/with-viewbox.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/display/bBox-impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/display/bBox-impact.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/display/none-on-defs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/display/none-on-defs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/display/none-on-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/display/none-on-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/display/none-on-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/display/none-on-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/display/none-on-tref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/display/none-on-tref.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-opacity/50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-opacity/50percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-opacity/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-opacity/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-opacity/on-parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-opacity/on-parent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-opacity/on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-opacity/on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-rule/evenodd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-rule/evenodd.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill-rule/nonzero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill-rule/nonzero.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/#RGB-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/#RGB-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/#RGBA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/#RGBA.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/#RRGGBB-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/#RRGGBB-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/#RRGGBBAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/#RRGGBBAA.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/currentColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/currentColor.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/double-inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/double-inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/hsl-with-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/hsl-with-alpha.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/icc-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/icc-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/invalid-#RRGGBB-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/named-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/named-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/pattern-on-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/pattern-on-shape.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/pattern-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/pattern-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/random-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/random-value.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgb-0-127-0-0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgb-0-127-0-0.5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgb-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgb-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgb-int-int-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgb-int-int-int.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgba-0-127-0--1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgba-0-127-0--1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgba-0-127-0-0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgba-0-127-0-0.5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgba-0-127-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgba-0-127-0-0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgba-0-127-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgba-0-127-0-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/rgba-0-127-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/rgba-0-127-0-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/fill/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/fill/transparent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/isolation/as-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/isolation/as-property.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/isolation/isolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/isolation/isolate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/default-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/default-clip.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/inheritance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/inheritance-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/inheritance-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/inheritance-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/invalid-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/invalid-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/marker-on-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/marker-on-line.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/marker-on-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/marker-on-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/marker-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/marker-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/on-ArcTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/on-ArcTo.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/only-marker-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/only-marker-end.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/only-marker-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/only-marker-mid.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=-45.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=0.25turn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=0.25turn.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=1.5rad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=1.5rad.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=30.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=40grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=40grad.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/orient=9999.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/orient=9999.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/percent-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/percent-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/recursive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/recursive-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/recursive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/recursive-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/recursive-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/recursive-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/recursive-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/recursive-4.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/recursive-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/recursive-5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/with-viewBox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/with-viewBox-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/with-viewBox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/with-viewBox-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/marker/zero-sized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/marker/zero-sized.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/darken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/darken.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/hue.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/lighten.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/overlay.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/screen.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/mix-blend-mode/xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/mix-blend-mode/xor.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/opacity/50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/opacity/50percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/opacity/bBox-impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/opacity/bBox-impact.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/opacity/clamp-value-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/opacity/clamp-value-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/opacity/clamp-value-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/opacity/clamp-value-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/opacity/group-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/opacity/group-opacity.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/duplicates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/duplicates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/fill.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/invalid.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/markers.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/paint-order/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/paint-order/stroke.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-dasharray/n-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-dasharray/n-0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-dasharray/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-dasharray/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linecap/butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linecap/butt.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linecap/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linecap/round.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linecap/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linecap/square.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linejoin/arcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linejoin/arcs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linejoin/bevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linejoin/bevel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linejoin/miter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linejoin/miter.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-linejoin/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-linejoin/round.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-opacity/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-opacity/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-opacity/on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-opacity/on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-width/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-width/bold.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-width/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-width/default.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-width/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-width/negative.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke-width/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke-width/zero.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/line-as-curve-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/line-as-curve-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/line-as-curve-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/line-as-curve-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/linear-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/linear-gradient.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/named-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/named-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/pattern-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/pattern-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/pattern.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/painting/stroke/radial-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/painting/stroke/radial-gradient.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/circle/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/circle/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/ellipse/percent-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/ellipse/percent-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/ellipse/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/ellipse/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/no-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/no-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/no-x1-coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/no-x1-coordinate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/no-x2-coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/no-x2-coordinate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/no-y1-coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/no-y1-coordinate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/no-y2-coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/no-y2-coordinate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/percent-units.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/percent-units.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/line/with-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/line/with-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/A.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-A-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-A-s.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-A-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-A-t.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-A-trimmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-A-trimmed.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-A.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-C-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-C-S.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-C.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-H-H-implicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-H-H-implicit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-H-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-H-H.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-H.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-L-Z-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-L-Z-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-L-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-L-Z.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-L-implicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-L-implicit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-M-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-M-L.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-M-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-M-Z.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-M.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-Z-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-Z-A.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L-Z-L-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L-Z-L-L.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-L.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-M-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-M-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-M.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-Q-T-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-Q-T-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-Q-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-Q-T.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-Q-rel-T-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-Q-rel-T-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-Q.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-S-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-S-S.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-S.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-Q-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-Q-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-Q.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-S-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-S-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-S.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-T-rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-T-rel.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T-T.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-T.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-V-V-implicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-V-V-implicit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-V-V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-V-V.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-V.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-Z.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M-rel-M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M-rel-M.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/M.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/extra-spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/extra-spaces.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/invalid-data-in-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/invalid-data-in-L.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/invalid-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/invalid-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/path/multi-line-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/path/multi-line-data.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/polygon/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/polygon/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/polyline/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/polyline/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/cap-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/cap-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/ch-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/ch-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/em-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/em-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/ex-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/ex-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/ic-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/ic-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/invalid-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/invalid-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/invalid-length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/invalid-length.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/lh-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/lh-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/mm-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/mm-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/percentage-values-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/percentage-values-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/percentage-values-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/percentage-values-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/q-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/q-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/rem-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/rem-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/rlh-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/rlh-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/rounded-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/rounded-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/vi-and-vb-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/vi-and-vb-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/vw-and-vh-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/vw-and-vh-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/shapes/rect/with-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/shapes/rect/with-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/a/inside-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/a/inside-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/a/inside-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/a/inside-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/a/on-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/a/on-shape.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/a/on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/a/on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/a/on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/a/on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/defs/multiple-defs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/defs/multiple-defs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/defs/nested-defs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/defs/nested-defs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/defs/out-of-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/defs/out-of-order.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/defs/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/defs/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/embedded-gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/embedded-gif.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/embedded-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/embedded-png.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/embedded-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/embedded-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/embedded-svgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/embedded-svgz.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/embedded-webp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/embedded-webp.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-gif.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-jpeg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-png.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-svgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-svgz.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/external-webp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/external-webp.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/float-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/float-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/no-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/no-height.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/no-width-on-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/no-width-on-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/no-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/no-width.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/recursive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/recursive-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/recursive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/recursive-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/url-to-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/url-to-png.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/url-to-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/url-to-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/with-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/with-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/zero-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/zero-height.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/image/zero-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/image/zero-width.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/class-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/class-selector.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/external-CSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/external-CSS.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/iD-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/iD-selector.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/important.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/invalid-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/invalid-type.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/resolve-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/resolve-order.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/style/type-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/style/type-selector.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/background-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/background-color.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/deeply-nested-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/deeply-nested-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/funcIRI-parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/funcIRI-parsing.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/mixed-namespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/mixed-namespaces.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/negative-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/negative-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/nested-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/nested-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/no-children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/no-children.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/no-children.svg: -------------------------------------------------------------------------------- 1 | 2 | No children 3 | 4 | -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/no-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/no-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/xmlns-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/xmlns-validation.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/svg/zero-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/svg/zero-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/switch/non-SVG-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/switch/non-SVG-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/switch/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/switch/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/switch/single-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/switch/single-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/switch/systemLanguage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/switch/systemLanguage.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/symbol/opacity-on-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/symbol/opacity-on-use.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/symbol/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/symbol/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/symbol/unused-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/symbol/unused-symbol.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/symbol/with-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/symbol/with-transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/symbol/with-viewBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/symbol/with-viewBox.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/en-GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/en-GB.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/en-US.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/en.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/on-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/on-svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/ru-Ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/ru-Ru.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/systemLanguage/ru-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/systemLanguage/ru-en.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform-origin/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform-origin/left.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform-origin/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform-origin/top.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/default.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/empty.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/matrix.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/rotate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/scale.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/skewX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/skewX.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/skewY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/skewY.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/transform/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/transform/translate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/cSS-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/cSS-rules.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/duplicated-IDs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/duplicated-IDs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/from-defs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/from-defs.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/indirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/indirect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/non-linear-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/non-linear-order.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/self-recursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/self-recursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/with-currentColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/with-currentColor.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/structure/use/with-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/structure/use/with-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/alignment-baseline/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/alignment-baseline/auto.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/alignment-baseline/central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/alignment-baseline/central.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/alignment-baseline/hanging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/alignment-baseline/hanging.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/alignment-baseline/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/alignment-baseline/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/alignment-baseline/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/alignment-baseline/middle.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/-10.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/-50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/-50percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/10.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/2mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/2mm.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/50percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/baseline.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/sub.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/super.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/baseline-shift/with-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/baseline-shift/with-rotate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/cbdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/cbdt.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/colrv0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/colrv0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/colrv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/colrv1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/compound-emojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/compound-emojis.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/mixed-text-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/mixed-text-rtl.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/mixed-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/mixed-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/sbix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/sbix.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/svg.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/color-font/writing-mode=tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/color-font/writing-mode=tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/direction/rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/direction/rtl.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/auto.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/central.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/complex.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/hanging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/hanging.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/middle.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/dominant-baseline/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/dominant-baseline/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/cursive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/cursive.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/double-quoted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/double-quoted.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/fallback-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/fallback-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/fallback-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/fallback-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/fantasy.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/font-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/font-list.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/monospace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/monospace.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/noto-sans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/noto-sans.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/sans-serif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/sans-serif.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-family/serif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-family/serif.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-kerning/arabic-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-kerning/arabic-script.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-kerning/as-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-kerning/as-property.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-kerning/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-kerning/none.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/em.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/ex.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/inheritance.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/mixed-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/mixed-values.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/named-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/named-value.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/negative-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/negative-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/percent-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/percent-value.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-size/zero-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-size/zero-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-stretch/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-stretch/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-stretch/narrower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-stretch/narrower.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-style/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-style/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-style/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-style/italic.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-style/oblique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-style/oblique.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-variant/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-variant/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-variant/small-caps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-variant/small-caps.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/650.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/700.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/bold.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/bolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/bolder.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/lighter.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font-weight/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font-weight/normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font/font-shorthand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font/font-shorthand.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/font/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/font/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/kerning/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/kerning/0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/kerning/10percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/kerning/10percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/lengthAdjust/text-on-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/lengthAdjust/text-on-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/lengthAdjust/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/lengthAdjust/vertical.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/1mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/1mm.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/5percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/5percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/filter-bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/filter-bbox.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/letter-spacing/on-Arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/letter-spacing/on-Arabic.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/end-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/end-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/inheritance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/inheritance-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/inheritance-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/inheritance-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/inheritance-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/inheritance-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/middle-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/middle-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-anchor/start-on-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-anchor/start-on-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-decoration/indirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-decoration/indirect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-decoration/overline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-decoration/overline.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-decoration/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-decoration/underline.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text-rendering/on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text-rendering/on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/bidi-reordering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/bidi-reordering.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/complex-graphemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/complex-graphemes.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/em-and-ex-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/em-and-ex-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/escaped-text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/escaped-text-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/escaped-text-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/escaped-text-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/escaped-text-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/escaped-text-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/escaped-text-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/escaped-text-4.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/fill-rule=evenodd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/fill-rule=evenodd.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/filter-bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/filter-bbox.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/mm-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/mm-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/no-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/no-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/real-text-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/real-text-height.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/rotate-on-Arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/rotate-on-Arabic.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/rotate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/xml-lang=ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/xml-lang=ja.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/xml-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/xml-space.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/text/zalgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/text/zalgo.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/150-on-parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/150-on-parent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/150-on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/150-on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/150.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/40mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/40mm.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/75percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/75percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/arabic.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/inherit.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/negative.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textLength/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textLength/zero.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/closed-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/closed-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/complex.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/invalid-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/invalid-link.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/link-to-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/link-to-rect.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/m-A-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/m-A-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/m-L-Z-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/m-L-Z-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/method=stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/method=stretch.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/mixed-children-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/mixed-children-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/mixed-children-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/mixed-children-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/no-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/no-link.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/side=right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/side=right.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/simple-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/simple-case.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/spacing=auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/spacing=auto.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/startOffset=-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/startOffset=-100.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/startOffset=30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/startOffset=30.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/startOffset=5mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/startOffset=5mm.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/startOffset=9999.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/startOffset=9999.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/two-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/two-paths.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/very-long-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/very-long-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/with-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/with-filter.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/with-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/with-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/with-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/with-rotate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/with-text-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/with-text-anchor.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/with-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/with-underline.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/textPath/writing-mode=tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/textPath/writing-mode=tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/link-to-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/link-to-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/position-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/position-attributes.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/style-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/style-attributes.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/with-a-title-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/with-a-title-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/with-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/with-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tref/xml-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tref/xml-space.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/bidi-reordering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/bidi-reordering.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/mixed-font-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/mixed-font-size.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/mixed-xml-space-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/mixed-xml-space-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/mixed-xml-space-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/mixed-xml-space-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/mixed-xml-space-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/mixed-xml-space-3.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/mixed.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/multiple-coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/multiple-coordinates.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/nested-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/nested-rotate.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/nested-whitespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/nested-whitespaces.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/nested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/nested.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/only-with-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/only-with-y.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/outside-the-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/outside-the-text.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/pseudo-multi-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/pseudo-multi-line.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/rotate-on-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/rotate-on-child.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/sequential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/sequential.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/style-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/style-override.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/transform.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/tspan-bbox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/tspan-bbox-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/tspan-bbox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/tspan-bbox-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-clip-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-clip-path.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-dy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-dy.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-filter.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-mask.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-opacity.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/with-x-and-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/with-x-and-y.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/without-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/without-attributes.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/xml-space-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/xml-space-1.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/tspan/xml-space-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/tspan/xml-space-2.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/unicode-bidi/bidi-override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/unicode-bidi/bidi-override.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/-5.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/0.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/10.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/2mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/2mm.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/5percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/5percent.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/word-spacing/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/word-spacing/normal.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/horizontal-tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/horizontal-tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/inheritance.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/invalid-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/invalid-value.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/lr-tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/lr-tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/lr.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/on-tspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/on-tspan.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/rl-tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/rl-tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/rl.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/tb-rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/tb-rl.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/tb.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/vertical-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/vertical-lr.png -------------------------------------------------------------------------------- /crates/resvg/tests/tests/text/writing-mode/vertical-rl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linebender/resvg/ff63ddbf4298a31117fb948247eb42e44eddf1a0/crates/resvg/tests/tests/text/writing-mode/vertical-rl.png -------------------------------------------------------------------------------- /tools/viewsvg/.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | --------------------------------------------------------------------------------