1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

LibWeb: Port all callers of Element::namespace to Element::namespace_uri

Removing some more use of DeprecatedFlyString
This commit is contained in:
Shannon Booth 2023-11-05 13:12:53 +13:00 committed by Andreas Kling
parent f2e77f7778
commit 326b34c7c7
4 changed files with 5 additions and 7 deletions

View file

@ -1379,7 +1379,7 @@ bool Node::is_equal_node(Node const* other_node) const
// Its namespace, namespace prefix, local name, and its attribute lists size.
auto& this_element = verify_cast<Element>(*this);
auto& other_element = verify_cast<Element>(*other_node);
if (this_element.namespace_() != other_element.namespace_()
if (this_element.namespace_uri() != other_element.namespace_uri()
|| this_element.prefix() != other_element.prefix()
|| this_element.local_name() != other_element.local_name()
|| this_element.attribute_list_size() != other_element.attribute_list_size())