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