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

LibWeb: Implement Document::populate_with_html_head_and_body()

This commit is contained in:
Sam Atkins 2023-12-18 14:00:30 +00:00 committed by Andreas Kling
parent 8dc8d57418
commit 40f7cab21e
2 changed files with 26 additions and 0 deletions

View file

@ -96,6 +96,8 @@ public:
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Document>> construct_impl(JS::Realm&);
virtual ~Document() override;
WebIDL::ExceptionOr<void> populate_with_html_head_and_body();
JS::GCPtr<Selection::Selection> get_selection() const;
String cookie(Cookie::Source = Cookie::Source::NonHttp);