Files
ladybird/Userland/Libraries/LibWeb/HTML/PageTransitionEvent.idl
Andreas Kling 831fdcaabc LibWeb: Add the PageTransitionEvent interface and fire "pageshow" events
We now fire "pageshow" events at the appropriate time during document
loading (done by the parser.)

Note that there are no corresponding "pagehide" events yet.
2021-09-26 12:47:51 +02:00

6 lines
87 B
Plaintext

interface PageTransitionEvent : Event {
readonly attribute boolean persisted;
};