diff --git a/Libraries/LibWeb/CSS/URL.h b/Libraries/LibWeb/CSS/URL.h index 9380ad2e226..e859e61953d 100644 --- a/Libraries/LibWeb/CSS/URL.h +++ b/Libraries/LibWeb/CSS/URL.h @@ -25,3 +25,11 @@ private: }; } + +template<> +struct AK::Formatter : AK::Formatter { + ErrorOr format(FormatBuilder& builder, Web::CSS::URL const& value) + { + return Formatter::format(builder, value.to_string()); + } +};