/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/QuotaExceededError.webidl
21 строка
651 B
Rahul Menon
content: Make QuotaExceededError serializable (#38720)
16 авг 2025, 23:33
Не верифицирован
16 авг 2025, 23:33
389277f
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://heycam.github.io/webidl/#quotaexceedederror [ Exposed=(Window,Worker,Worklet,DissimilarOriginWindow), Serializable ] interface QuotaExceededError : DOMException { [Throws] constructor(optional DOMString message = "", optional QuotaExceededErrorOptions options = {}); readonly attribute double? quota; readonly attribute double? requested; }; dictionary QuotaExceededErrorOptions { double quota; double requested; };