mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01: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:
parent
fad247c802
commit
b5932e5abf
14 changed files with 173 additions and 67 deletions
|
@ -1,56 +0,0 @@
|
|||
[getRandomValues.any.worker.html]
|
||||
[Large length: Int8Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Int16Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Int32Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: BigInt64Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint8Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint8ClampedArray]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint16Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint32Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: BigUint64Array]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[getRandomValues.any.html]
|
||||
[Large length: Int8Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Int16Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Int32Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: BigInt64Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint8Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint8ClampedArray]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint16Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: Uint32Array]
|
||||
expected: FAIL
|
||||
|
||||
[Large length: BigUint64Array]
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[storage_session_setitem_quotaexceedederr.window.html]
|
||||
[Throws QuotaExceededError when the quota has been exceeded]
|
||||
expected: FAIL
|
4
tests/wpt/mozilla/meta/MANIFEST.json
vendored
4
tests/wpt/mozilla/meta/MANIFEST.json
vendored
|
@ -13725,14 +13725,14 @@
|
|||
]
|
||||
],
|
||||
"interfaces.https.html": [
|
||||
"05ead2c3e2c362586506be77c8093c8bc4f0fb53",
|
||||
"cbdb5bef0bab4f54514913517c214631a71f7d3a",
|
||||
[
|
||||
null,
|
||||
{}
|
||||
]
|
||||
],
|
||||
"interfaces.worker.js": [
|
||||
"a02605ff8e63db701c77d734037fcb33d76418d0",
|
||||
"1955d6f821d8445c813ac09e098b2c66f0e07d26",
|
||||
[
|
||||
"mozilla/interfaces.worker.html",
|
||||
{}
|
||||
|
|
|
@ -288,6 +288,7 @@ test_interfaces([
|
|||
"ProcessingInstruction",
|
||||
"ProgressEvent",
|
||||
"PromiseRejectionEvent",
|
||||
"QuotaExceededError",
|
||||
"RadioNodeList",
|
||||
"Range",
|
||||
"ReadableStreamDefaultReader",
|
||||
|
|
|
@ -98,6 +98,7 @@ test_interfaces([
|
|||
"Permissions",
|
||||
"ProgressEvent",
|
||||
"PromiseRejectionEvent",
|
||||
"QuotaExceededError",
|
||||
"ReadableStream",
|
||||
"ReadableStreamDefaultReader",
|
||||
"ReadableStreamDefaultController",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue