From 67fcee6fca75ac4f3e51afb1aa832f56fe81f195 Mon Sep 17 00:00:00 2001 From: MacDue Date: Sat, 11 Nov 2023 21:12:58 +0000 Subject: [PATCH] LibWeb: Remove two fixed FIXMEs Both fixed in #21785 :^) --- Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp index cd15b30254..ab6d4baee0 100644 --- a/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp @@ -215,8 +215,6 @@ void SVGFormattingContext::run(Box const& box, LayoutMode layout_mode, Available } else if (is(descendant)) { auto& text_element = static_cast(dom_node); - // FIXME: Support arbitrary path transforms for fonts. - // FIMXE: This assumes transform->x_scale() == transform->y_scale(). auto& font = graphics_box.font(); auto text_contents = text_element.text_contents(); Utf8View text_utf8 { text_contents };