mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d4a890080d
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
10 lines
282 B
Plaintext
10 lines
282 B
Plaintext
#import <HTML/NavigationType.idl>
|
|
#import <HTML/NavigationHistoryEntry.idl>
|
|
|
|
[Exposed=Window]
|
|
interface NavigationTransition {
|
|
readonly attribute NavigationType navigationType;
|
|
readonly attribute NavigationHistoryEntry from;
|
|
readonly attribute Promise<undefined> finished;
|
|
};
|