diff options
author | Luca Casonato <hello@lcas.dev> | 2021-08-12 19:16:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 19:16:23 +0200 |
commit | eae9d5b647b89e547b4229b8b794d91753c9ec95 (patch) | |
tree | 45544503e96d909284d40ba271638bd4438f5e4f | |
parent | 7d55e05486183fe3dbeccc7beaa46fa497f05e08 (diff) |
fix: Blob#slice arguments should be optional (#11665)
-rw-r--r-- | ext/web/09_file.js | 2 | ||||
-rw-r--r-- | tools/wpt/expectation.json | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ext/web/09_file.js b/ext/web/09_file.js index 516e80adf..43d9ffcb3 100644 --- a/ext/web/09_file.js +++ b/ext/web/09_file.js @@ -220,7 +220,7 @@ * @param {string} [contentType] * @returns {Blob} */ - slice(start, end, contentType) { + slice(start = undefined, end = undefined, contentType = undefined) { webidl.assertBranded(this, Blob); const prefix = "Failed to execute 'slice' on 'Blob'"; if (start !== undefined) { diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index d2c5a3194..827fc9ee5 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -16443,7 +16443,6 @@ "filereader_result.any.html": true }, "idlharness.any.html": [ - "Blob interface: operation slice(optional long long, optional long long, optional DOMString)", "FileList interface: existence and properties of interface object", "FileList interface object length", "FileList interface object name", |