mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +00:00
LibWeb: Use correct relevant settings object in Document initialization
The code was not in line with the spec comment right above it.
This commit is contained in:
parent
5724a04553
commit
1029ea4b32
1 changed files with 2 additions and 1 deletions
|
@ -188,7 +188,8 @@ JS::NonnullGCPtr<Document> Document::create_and_initialize(Type type, String con
|
||||||
// 8. If browsingContext is not a top-level browsing context, then:
|
// 8. If browsingContext is not a top-level browsing context, then:
|
||||||
if (!browsing_context->is_top_level()) {
|
if (!browsing_context->is_top_level()) {
|
||||||
// 1. Let parentEnvironment be browsingContext's container's relevant settings object.
|
// 1. Let parentEnvironment be browsingContext's container's relevant settings object.
|
||||||
auto& parent_environment = browsing_context->container()->document().relevant_settings_object();
|
VERIFY(browsing_context->container());
|
||||||
|
auto& parent_environment = HTML::relevant_settings_object(*browsing_context->container());
|
||||||
|
|
||||||
// 2. Set topLevelCreationURL to parentEnvironment's top-level creation URL.
|
// 2. Set topLevelCreationURL to parentEnvironment's top-level creation URL.
|
||||||
top_level_creation_url = parent_environment.top_level_creation_url;
|
top_level_creation_url = parent_environment.top_level_creation_url;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue