mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
13 lines
285 B
Plaintext
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);
|
|
};
|