mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
We were previously assuming that dictionary members were always required when being returned. This is a bit of a weird case, because unlike _input_ dictionaries which the spec marks as required, 'result' dictionaries do not seem to be marked in spec IDL as required. This is still fine from the POV that the spec is written as it states that we should only be putting the values into the dictionary if the value exists. We could do this through some metaprogramming constexpr type checks. For example, if the type in our C++ representation was not an Optional, we can skip the has_value check. Instead of doing that, change the IDL of the result dictionaries to annotate these members so that the IDL generator knows this information up front. While all current cases have every single member returned or not returned, it is conceivable that the spec could have a situation that one member is always returned (and should get marked as required), while the others are optionally returned. Therefore, this new GenerateAsRequired attribute is applied for each individual member.
56 lines
1.7 KiB
Text
56 lines
1.7 KiB
Text
#import <DOM/EventHandler.idl>
|
|
#import <DOM/EventTarget.idl>
|
|
#import <HTML/NavigationHistoryEntry.idl>
|
|
#import <HTML/NavigationTransition.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-interface
|
|
[Exposed=Window]
|
|
interface Navigation : EventTarget {
|
|
sequence<NavigationHistoryEntry> entries();
|
|
readonly attribute NavigationHistoryEntry? currentEntry;
|
|
undefined updateCurrentEntry(NavigationUpdateCurrentEntryOptions options);
|
|
readonly attribute NavigationTransition? transition;
|
|
|
|
readonly attribute boolean canGoBack;
|
|
readonly attribute boolean canGoForward;
|
|
|
|
NavigationResult navigate(USVString url, optional NavigationNavigateOptions options = {});
|
|
NavigationResult reload(optional NavigationReloadOptions options = {});
|
|
|
|
NavigationResult traverseTo(DOMString key, optional NavigationOptions options = {});
|
|
NavigationResult back(optional NavigationOptions options = {});
|
|
NavigationResult forward(optional NavigationOptions options = {});
|
|
|
|
attribute EventHandler onnavigate;
|
|
attribute EventHandler onnavigatesuccess;
|
|
attribute EventHandler onnavigateerror;
|
|
attribute EventHandler oncurrententrychange;
|
|
};
|
|
|
|
dictionary NavigationUpdateCurrentEntryOptions {
|
|
required any state;
|
|
};
|
|
|
|
dictionary NavigationOptions {
|
|
any info;
|
|
};
|
|
|
|
dictionary NavigationNavigateOptions : NavigationOptions {
|
|
any state;
|
|
NavigationHistoryBehavior history = "auto";
|
|
};
|
|
|
|
dictionary NavigationReloadOptions : NavigationOptions {
|
|
any state;
|
|
};
|
|
|
|
dictionary NavigationResult {
|
|
[GenerateAsRequired] Promise<NavigationHistoryEntry> committed;
|
|
[GenerateAsRequired] Promise<NavigationHistoryEntry> finished;
|
|
};
|
|
|
|
enum NavigationHistoryBehavior {
|
|
"auto",
|
|
"push",
|
|
"replace"
|
|
};
|