mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 08:10:02 +00:00
LibWeb/DOM: Remove FIXME dbgln about unknown element name creation
Now that we have implemented most of the element types, this dbgln is a lot less useful for detecting issues on live sites, and is in my experience more likely to log cases that are not a FIXME. It also cleans up some of the log spam from running tests.
This commit is contained in:
parent
d762d16938
commit
1126049b91
Notes:
github-actions[bot]
2025-01-29 10:29:15 +00:00
Author: https://github.com/shannonbooth
Commit: 1126049b91
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3393
Reviewed-by: https://github.com/gmta ✅
1 changed files with 0 additions and 1 deletions
|
@ -682,7 +682,6 @@ WebIDL::ExceptionOr<GC::Ref<Element>> 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<DOM::Element>(document, move(qualified_name));
|
||||
element->set_is_value(move(is_value));
|
||||
element->set_custom_element_state(CustomElementState::Uncustomized);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue