1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibWeb: Port Element::insert_adjacent from ByteString

This commit is contained in:
Shannon Booth 2024-01-13 20:12:29 +13:00 committed by Andreas Kling
parent bd2fe3dcaa
commit e6861cb5ef
2 changed files with 4 additions and 4 deletions

View file

@ -391,7 +391,7 @@ private:
void invalidate_style_after_attribute_change(FlyString const& attribute_name);
WebIDL::ExceptionOr<JS::GCPtr<Node>> insert_adjacent(ByteString const& where, JS::NonnullGCPtr<Node> node);
WebIDL::ExceptionOr<JS::GCPtr<Node>> insert_adjacent(StringView where, JS::NonnullGCPtr<Node> node);
void enqueue_an_element_on_the_appropriate_element_queue();