35 files changed
lines changed
| Original file line number | Diff line number | Diff line change |
|---|
@@ -26,18 +26,18 @@ Last update:
|
26 | 26 | - interfaces: https://github.com/web-platform-tests/wpt/tree/e1b27be06b/interfaces |
27 | 27 | - performance-timeline: https://github.com/web-platform-tests/wpt/tree/94caab7038/performance-timeline |
28 | 28 | - resource-timing: https://github.com/web-platform-tests/wpt/tree/22d38586d0/resource-timing |
29 | | -- resources: https://github.com/web-platform-tests/wpt/tree/1e140d63ec/resources |
| 29 | +- resources: https://github.com/web-platform-tests/wpt/tree/1d2c5fb36a/resources |
30 | 30 | - streams: https://github.com/web-platform-tests/wpt/tree/bc9dcbbf1a/streams |
31 | 31 | - url: https://github.com/web-platform-tests/wpt/tree/9504a83e01/url |
32 | 32 | - urlpattern: https://github.com/web-platform-tests/wpt/tree/84b75f0880/urlpattern |
33 | 33 | - user-timing: https://github.com/web-platform-tests/wpt/tree/5ae85bf826/user-timing |
34 | 34 | - wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi |
35 | 35 | - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi |
36 | 36 | - web-locks: https://github.com/web-platform-tests/wpt/tree/10a122a6bc/web-locks |
37 | | -- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/ab08796857/WebCryptoAPI |
| 37 | +- WebCryptoAPI: https://github.com/web-platform-tests/wpt/tree/1d2c5fb36a/WebCryptoAPI |
38 | 38 | - webidl/ecmascript-binding/es-exceptions: https://github.com/web-platform-tests/wpt/tree/2f96fa1996/webidl/ecmascript-binding/es-exceptions |
39 | 39 | - webmessaging/broadcastchannel: https://github.com/web-platform-tests/wpt/tree/6495c91853/webmessaging/broadcastchannel |
40 | | -- webstorage: https://github.com/web-platform-tests/wpt/tree/1291340aaa/webstorage |
| 40 | +- webstorage: https://github.com/web-platform-tests/wpt/tree/1d2c5fb36a/webstorage |
41 | 41 | |
42 | 42 | [Web Platform Tests]: https://github.com/web-platform-tests/wpt |
43 | 43 | [`git node wpt`]: https://github.com/nodejs/node-core-utils/blob/main/docs/git-node.md#git-node-wpt |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
| Original file line number | Diff line number | Diff line change |
|---|
@@ -60,9 +60,9 @@ for (const array of arrays) {
|
60 | 60 | |
61 | 61 | test(function() { |
62 | 62 | const maxlength = 65536 / ctor.BYTES_PER_ELEMENT; |
63 | | -assert_throws_dom("QuotaExceededError", function() { |
64 | | -self.crypto.getRandomValues(new ctor(maxlength + 1)) |
65 | | -}, "crypto.getRandomValues length over 65536") |
| 63 | +assert_throws_quotaexceedederror(() => { |
| 64 | +self.crypto.getRandomValues(new ctor(maxlength + 1)); |
| 65 | +}, null, null, "crypto.getRandomValues length over 65536"); |
66 | 66 | }, "Large length: " + array); |
67 | 67 | |
68 | 68 | test(function() { |
|
File renamed without changes.
File renamed without changes.