diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-10 06:28:20 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-10 16:08:14 +0100 |
commit | 834202aeb9a47c544ab4e61deb813de50bc03946 (patch) | |
tree | c120e9231fa5451b527131f6e423fac2645253bb /Userland/Libraries/LibWeb/DOM/Text.cpp | |
parent | 7bd8fd000f3f8e92ff632be2370a279ac2309250 (diff) | |
download | serenity-834202aeb9a47c544ab4e61deb813de50bc03946.zip |
LibWeb: Move setting of Web object prototypes to initialize()
This needs to happen before prototype/constructor intitialization can be
made lazy. Otherwise, GC could run during the C++ constructor and try to
collect the object currently being created.
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/Text.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Text.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/Text.cpp b/Userland/Libraries/LibWeb/DOM/Text.cpp index 9fb0967b52..33fe4b7d83 100644 --- a/Userland/Libraries/LibWeb/DOM/Text.cpp +++ b/Userland/Libraries/LibWeb/DOM/Text.cpp @@ -17,13 +17,17 @@ namespace Web::DOM { Text::Text(Document& document, DeprecatedString const& data) : CharacterData(document, NodeType::TEXT_NODE, data) { - set_prototype(&Bindings::cached_web_prototype(realm(), "Text")); } Text::Text(Document& document, NodeType type, DeprecatedString const& data) : CharacterData(document, type, data) { - set_prototype(&Bindings::cached_web_prototype(realm(), "Text")); +} + +void Text::initialize(JS::Realm& realm) +{ + Base::initialize(realm); + set_prototype(&Bindings::ensure_web_prototype<Bindings::TextPrototype>(realm, "Text")); } void Text::visit_edges(Cell::Visitor& visitor) |