mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Make Environment's top level origin nullable
This matches the definition in the spec, and is also a step towards removing the default constructor of URL::Origin.
This commit is contained in:
committed by
Shannon Booth
parent
556acd82ee
commit
937994cfaa
Notes:
github-actions[bot]
2025-05-27 02:49:41 +00:00
Author: https://github.com/shannonbooth Commit: https://github.com/LadybirdBrowser/ladybird/commit/937994cfaa8 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4878 Reviewed-by: https://github.com/trflynn89
@@ -35,7 +35,7 @@ ErrorOr<Web::HTML::SerializedEnvironmentSettingsObject> decode(Decoder& decoder)
|
||||
object.id = TRY(decoder.decode<String>());
|
||||
object.creation_url = TRY(decoder.decode<URL::URL>());
|
||||
object.top_level_creation_url = TRY(decoder.decode<Optional<URL::URL>>());
|
||||
object.top_level_origin = TRY(decoder.decode<URL::Origin>());
|
||||
object.top_level_origin = TRY(decoder.decode<Optional<URL::Origin>>());
|
||||
object.api_url_character_encoding = TRY(decoder.decode<String>());
|
||||
object.api_base_url = TRY(decoder.decode<URL::URL>());
|
||||
object.origin = TRY(decoder.decode<URL::Origin>());
|
||||
|
||||
Reference in New Issue
Block a user