From 2b38c651ec7f20b2476500a38f0264baca1e8f02 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Tue, 8 Jul 2025 13:41:44 +0900 Subject: [PATCH] Update QuotaExceededError usage QuotaExceededError is graduating from being a DOMException name into a new error class, in https://github.com/whatwg/webidl/pull/1465. Update creation sites to reflect this. For now, the quota and requested properties are left at their default (null). Future work could include setting them in an informative fashion. --- index.src.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.src.html b/index.src.html index 91fe4426..25fde7df 100644 --- a/index.src.html +++ b/index.src.html @@ -6184,7 +6184,7 @@ To reclaim a codec, a User Agent MUST run the appropriate close algorithm (amongst [=Close AudioDecoder=], [=Close AudioEncoder=], [=Close VideoDecoder=] and [=Close VideoEncoder=]) with -a {{QuotaExceededError}} {{DOMException}}. +a {{QuotaExceededError}}. The rules governing when a codec may be reclaimed depend on whether the codec is an [=active=] or [=inactive=] codec and/or a [=background=] codec.