LibWeb: Rename current_global_object to current_principal_global_object

Again, following a rename as part of the introduction of shadow realms
inducing a bunch of mechanical changes.
This commit is contained in:
Shannon Booth
2024-10-21 13:48:44 +13:00
committed by Andrew Kaster
parent 0c2400641e
commit 84dc83e0e0
Notes: github-actions[bot] 2024-11-01 19:16:55 +00:00
14 changed files with 27 additions and 25 deletions

View File

@@ -44,7 +44,7 @@ void Text::visit_edges(Cell::Visitor& visitor)
WebIDL::ExceptionOr<JS::NonnullGCPtr<Text>> Text::construct_impl(JS::Realm& realm, String const& data)
{
// The new Text(data) constructor steps are to set thiss data to data and thiss node document to current global objects associated Document.
auto& window = verify_cast<HTML::Window>(HTML::current_global_object());
auto& window = verify_cast<HTML::Window>(HTML::current_principal_global_object());
return realm.heap().allocate<Text>(realm, window.associated_document(), data);
}