mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 18:37:37 +02:00
This change takes all existing WebIDL files in the repo that had definition lines without four leading spaces, and fixes them so they have four leading spaces. (cherry picked from commit 51528ec6779202747cc3b99d3b77772a124a0b47)
16 lines
454 B
Plaintext
16 lines
454 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#popstateevent
|
|
[Exposed=Window]
|
|
interface PopStateEvent : Event {
|
|
constructor(DOMString type, optional PopStateEventInit eventInitDict = {});
|
|
|
|
readonly attribute any state;
|
|
[FIXME] readonly attribute boolean hasUAVisualTransition;
|
|
};
|
|
|
|
dictionary PopStateEventInit : EventInit {
|
|
any state = null;
|
|
// FIXME: boolean hasUAVisualTransition = false;
|
|
};
|