Files
ladybird/Libraries/LibWeb/DOMURL/Origin.idl

13 lines
285 B
Plaintext

// https://html.spec.whatwg.org/multipage/browsers.html#dom-origin-interface
[Exposed=*]
interface Origin {
constructor();
static Origin from(any value);
readonly attribute boolean opaque;
boolean isSameOrigin(Origin other);
boolean isSameSite(Origin other);
};