ladybird/Userland/Libraries/LibWeb/HTML/History.idl
Luke Wilde 1927600852 LibWeb: Add the History object and stub pushState and replaceState
The spec allows us to optionally return from these for any reason.
Our reason is that we don't have all the infrastructure in place yet to
implement them.
2021-09-12 01:41:44 +02:00

6 lines
213 B
Plaintext

[Exposed=Window]
interface History {
undefined pushState(any data, DOMString unused, optional USVString? url = null);
undefined replaceState(any data, DOMString unused, optional USVString? url = null);
};