mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
LibWeb: Port all callers of Element::namespace to Element::namespace_uri
Removing some more use of DeprecatedFlyString
This commit is contained in:
parent
f2e77f7778
commit
326b34c7c7
Notes:
sideshowbarker
2024-07-17 07:19:27 +09:00
Author: https://github.com/shannonbooth
Commit: 326b34c7c7
Pull-request: https://github.com/SerenityOS/serenity/pull/21815
Reviewed-by: https://github.com/awesomekling
4 changed files with 5 additions and 7 deletions
|
@ -1379,7 +1379,7 @@ bool Node::is_equal_node(Node const* other_node) const
|
|||
// Its namespace, namespace prefix, local name, and its attribute list’s 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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue