diff --git a/Libraries/LibWeb/DOM/ElementFactory.cpp b/Libraries/LibWeb/DOM/ElementFactory.cpp index 4efb8a60c6f..e7f6e323648 100644 --- a/Libraries/LibWeb/DOM/ElementFactory.cpp +++ b/Libraries/LibWeb/DOM/ElementFactory.cpp @@ -682,7 +682,6 @@ WebIDL::ExceptionOr> create_element(Document& document, FlyStri // https://dom.spec.whatwg.org/#concept-element-interface // The element interface for any name and namespace is Element, unless stated otherwise. - dbgln("Potential FIXME: Creating unknown generic element '{}' in namespace '{}'", local_name, namespace_); auto element = realm.create(document, move(qualified_name)); element->set_is_value(move(is_value)); element->set_custom_element_state(CustomElementState::Uncustomized);