mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 02:47:34 +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;
|
HTML::Origin origin;
|
||||||
// environment
|
// environment
|
||||||
// An environment
|
// An environment
|
||||||
HTML::EnvironmentSettingsObject* environment;
|
JS::GCPtr<HTML::EnvironmentSettingsObject> environment;
|
||||||
// policy container
|
// policy container
|
||||||
// A policy container
|
// A policy container
|
||||||
HTML::PolicyContainer policy_container;
|
HTML::PolicyContainer policy_container;
|
||||||
// document (default null)
|
// document (default null)
|
||||||
// Null or a Document
|
// Null or a Document
|
||||||
Web::DOM::Document* document { nullptr };
|
JS::GCPtr<Web::DOM::Document> document;
|
||||||
// FIXME: on document ready (default null)
|
// FIXME: on document ready (default null)
|
||||||
// Null or an algorithm accepting a Document
|
// Null or an algorithm accepting a Document
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue