ladybird/Libraries/LibWeb/DOMURL/Origin.idl
2025-12-30 12:40:27 +01:00

12 lines
285 B
Text

// 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);
};