1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 15:27:34 +00:00

LibWeb: Make Document::run_the_document_write_steps take a StringView

Which flows on down into HTMLTokenizer::insert_input_at_insertion_point.
This commit is contained in:
Shannon Booth 2023-09-12 23:16:10 +12:00 committed by Andreas Kling
parent 827170f6e6
commit 49eb3bfb1d
4 changed files with 6 additions and 6 deletions

View file

@ -546,7 +546,7 @@ private:
void evaluate_media_rules();
WebIDL::ExceptionOr<void> run_the_document_write_steps(DeprecatedString);
WebIDL::ExceptionOr<void> run_the_document_write_steps(StringView);
void queue_intersection_observer_task();
void queue_an_intersection_observer_entry(IntersectionObserver::IntersectionObserver&, HighResolutionTime::DOMHighResTimeStamp time, JS::NonnullGCPtr<Geometry::DOMRectReadOnly> root_bounds, JS::NonnullGCPtr<Geometry::DOMRectReadOnly> bounding_client_rect, JS::NonnullGCPtr<Geometry::DOMRectReadOnly> intersection_rect, bool is_intersecting, double intersection_ratio, JS::NonnullGCPtr<Element> target);