blob: 7c37a6ee4207b31ddd2c48f9e1725721679e79e2 [file] [log] [blame]
// Extracted from https://heycam.github.io/webidl/#using-mixins-and-partials on 2017-11-02
interface mixin GlobalCrypto {
readonly attribute Crypto crypto;
};
Window includes GlobalCrypto;
WorkerGlobalScope includes GlobalCrypto;
partial interface mixin WindowOrWorkerGlobalScope {
readonly attribute Crypto crypto;
};