mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 08:10:02 +00:00
LibWeb: Add missing JS::GCPtr wrappers in HTMLLinkElement
This commit is contained in:
parent
bc3eb6d65f
commit
3f22919eb5
Notes:
sideshowbarker
2024-07-17 06:00:02 +09:00
Author: https://github.com/mattco98
Commit: 3f22919eb5
Pull-request: https://github.com/SerenityOS/serenity/pull/17979
Reviewed-by: https://github.com/awesomekling
1 changed files with 2 additions and 2 deletions
|
@ -79,13 +79,13 @@ private:
|
|||
HTML::Origin origin;
|
||||
// environment
|
||||
// An environment
|
||||
HTML::EnvironmentSettingsObject* environment;
|
||||
JS::GCPtr<HTML::EnvironmentSettingsObject> environment;
|
||||
// policy container
|
||||
// A policy container
|
||||
HTML::PolicyContainer policy_container;
|
||||
// document (default null)
|
||||
// Null or a Document
|
||||
Web::DOM::Document* document { nullptr };
|
||||
JS::GCPtr<Web::DOM::Document> document;
|
||||
// FIXME: on document ready (default null)
|
||||
// Null or an algorithm accepting a Document
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue