mirror of
https://github.com/servo/servo
synced 2026-05-03 04:42:17 +02:00
script: Implement QuotaExceededError WebIDL interface (#38507)
Implements the new WebIDL interface for QuotaExceededError and uses it in appropriate places. Testing: WPT tests. Now passing many more in `tests/wpt/tests/WebCryptoAPI/getRandomValues.any.js` and `tests/wpt/tests/webstorage/storage_session_setitem_quotaexceedederr.window.js`. Fixes: #38489 --------- Signed-off-by: Rahul Menon <menonrahul02@gmail.com>
This commit is contained in:
@@ -63,7 +63,10 @@ impl CryptoMethods<crate::DomTypeHolder> for Crypto {
|
||||
} else {
|
||||
let data = unsafe { input.as_mut_slice() };
|
||||
if data.len() > 65536 {
|
||||
return Err(Error::QuotaExceeded);
|
||||
return Err(Error::QuotaExceeded {
|
||||
quota: None,
|
||||
requested: None,
|
||||
});
|
||||
}
|
||||
self.rng.borrow_mut().fill_bytes(data);
|
||||
let underlying_object = unsafe { input.underlying_object() };
|
||||
|
||||
Reference in New Issue
Block a user