mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 09:50:27 +00:00
12 lines
285 B
Text
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);
|
|
};
|