diff --git a/Userland/Libraries/LibWeb/Internals/Internals.cpp b/Userland/Libraries/LibWeb/Internals/Internals.cpp index c3a4c4dd448..9fa96ae760e 100644 --- a/Userland/Libraries/LibWeb/Internals/Internals.cpp +++ b/Userland/Libraries/LibWeb/Internals/Internals.cpp @@ -148,6 +148,7 @@ void Internals::spoof_current_url(String const& url_string) auto& window = internals_window(); window.associated_document().set_url(url); window.associated_document().set_origin(origin); + HTML::relevant_settings_object(window.associated_document()).creation_url = url; } JS::NonnullGCPtr Internals::create_internal_animation_timeline()