mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
LibWeb: Use FlyString in Document::get_elements_by_name
This commit is contained in:
parent
2a94cddb02
commit
bd2fe3dcaa
3 changed files with 3 additions and 3 deletions
|
@ -1250,7 +1250,7 @@ void Document::set_hovered_node(Node* node)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
JS::NonnullGCPtr<HTMLCollection> Document::get_elements_by_name(String const& name)
|
JS::NonnullGCPtr<HTMLCollection> Document::get_elements_by_name(FlyString const& name)
|
||||||
{
|
{
|
||||||
return HTMLCollection::create(*this, HTMLCollection::Scope::Descendants, [name](Element const& element) {
|
return HTMLCollection::create(*this, HTMLCollection::Scope::Descendants, [name](Element const& element) {
|
||||||
return element.name() == name;
|
return element.name() == name;
|
||||||
|
|
|
@ -219,7 +219,7 @@ public:
|
||||||
void schedule_style_update();
|
void schedule_style_update();
|
||||||
void schedule_layout_update();
|
void schedule_layout_update();
|
||||||
|
|
||||||
JS::NonnullGCPtr<HTMLCollection> get_elements_by_name(String const&);
|
JS::NonnullGCPtr<HTMLCollection> get_elements_by_name(FlyString const&);
|
||||||
JS::NonnullGCPtr<HTMLCollection> get_elements_by_class_name(StringView);
|
JS::NonnullGCPtr<HTMLCollection> get_elements_by_class_name(StringView);
|
||||||
|
|
||||||
JS::NonnullGCPtr<HTMLCollection> applets();
|
JS::NonnullGCPtr<HTMLCollection> applets();
|
||||||
|
|
|
@ -58,7 +58,7 @@ interface Document : Node {
|
||||||
readonly attribute Element? activeElement;
|
readonly attribute Element? activeElement;
|
||||||
|
|
||||||
Element? getElementById(DOMString id);
|
Element? getElementById(DOMString id);
|
||||||
HTMLCollection getElementsByName(DOMString name);
|
HTMLCollection getElementsByName([FlyString] DOMString name);
|
||||||
HTMLCollection getElementsByTagName(DOMString tagName);
|
HTMLCollection getElementsByTagName(DOMString tagName);
|
||||||
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
||||||
HTMLCollection getElementsByClassName(DOMString className);
|
HTMLCollection getElementsByClassName(DOMString className);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue