mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
LibWeb: Implement Node.isEqualNode(Node? otherNode)
This commit is contained in:
parent
a0528598b5
commit
449cbd5ecc
4 changed files with 87 additions and 0 deletions
|
@ -52,6 +52,7 @@ public:
|
|||
String get_attribute(const FlyString& name) const { return attribute(name); }
|
||||
ExceptionOr<void> set_attribute(const FlyString& name, const String& value);
|
||||
void remove_attribute(const FlyString& name);
|
||||
size_t attribute_list_size() const { return m_attributes.size(); }
|
||||
|
||||
template<typename Callback>
|
||||
void for_each_attribute(Callback callback) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue