diff --git a/Libraries/LibWeb/HTML/ErrorEvent.h b/Libraries/LibWeb/HTML/ErrorEvent.h
index 50c6a691924a..59a87f962379 100644
--- a/Libraries/LibWeb/HTML/ErrorEvent.h
+++ b/Libraries/LibWeb/HTML/ErrorEvent.h
@@ -14,7 +14,7 @@ namespace Web::HTML {
// https://html.spec.whatwg.org/multipage/webappapis.html#erroreventinit
struct ErrorEventInit : public DOM::EventInit {
String message;
- String filename; // FIXME: This should be a USVString.
+ String filename;
u32 lineno { 0 };
u32 colno { 0 };
JS::Value error { JS::js_null() };