LibWeb: Change id to be optional in HTML::NavigationParams
This commit is contained in:
parent
71b7a929db
commit
0c919718ae
Notes:
sideshowbarker
2024-07-17 10:05:47 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/0c919718ae Pull-request: https://github.com/SerenityOS/serenity/pull/18601 Reviewed-by: https://github.com/awesomekling
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ namespace Web::HTML {
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#navigation-params
|
||||
struct NavigationParams {
|
||||
// a navigation id
|
||||
String id;
|
||||
// null or a navigation ID
|
||||
Optional<String> id;
|
||||
|
||||
// null or a request that started the navigation
|
||||
JS::GCPtr<Fetch::Infrastructure::Request> request;
|
||||
|
|
Loading…
Add table
Reference in a new issue