mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
15 lines
466 B
Plaintext
15 lines
466 B
Plaintext
// https://webidl.spec.whatwg.org/#quotaexceedederror
|
|
[Exposed=*, Serializable]
|
|
interface QuotaExceededError : DOMException {
|
|
constructor(optional Utf16DOMString message = "", optional QuotaExceededErrorOptions options = {});
|
|
|
|
readonly attribute double? quota;
|
|
readonly attribute double? requested;
|
|
};
|
|
|
|
// https://webidl.spec.whatwg.org/#dictdef-quotaexceedederroroptions
|
|
dictionary QuotaExceededErrorOptions {
|
|
double quota;
|
|
double requested;
|
|
};
|