summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/SVG/SVGGraphicsElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/SVG/SVGGraphicsElement.cpp')
-rw-r--r--Libraries/LibWeb/SVG/SVGGraphicsElement.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/Libraries/LibWeb/SVG/SVGGraphicsElement.cpp b/Libraries/LibWeb/SVG/SVGGraphicsElement.cpp
index 8844abc0dd..1e7556d693 100644
--- a/Libraries/LibWeb/SVG/SVGGraphicsElement.cpp
+++ b/Libraries/LibWeb/SVG/SVGGraphicsElement.cpp
@@ -48,13 +48,4 @@ void SVGGraphicsElement::parse_attribute(const FlyString& name, const String& va
}
}
-SVGPaintingContext SVGGraphicsElement::make_painting_context_from(const SVGPaintingContext& context)
-{
- return SVGPaintingContext {
- m_fill_color.value_or(context.fill_color),
- m_stroke_color.value_or(context.stroke_color),
- m_stroke_width.value_or(context.stroke_width),
- };
-}
-
}