mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
LibWeb: Add missing JS::GCPtr wrappers in HTMLLinkElement
This commit is contained in:
parent
bc3eb6d65f
commit
3f22919eb5
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