diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-05 22:43:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 22:43:25 +0100 |
commit | 77048390392a30640ab1fb386a3a4a33094dac5e (patch) | |
tree | dc441903d0987b269d33a7bee2b4a8a268627ab4 /cli/tests | |
parent | 096e0905769e7cd9ae3019e4bf511407ed6bff9b (diff) |
fix: align AbortSignal to spec using WPT (#9007)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/wpt.jsonc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/cli/tests/wpt.jsonc b/cli/tests/wpt.jsonc index 3e151b954..479b6a747 100644 --- a/cli/tests/wpt.jsonc +++ b/cli/tests/wpt.jsonc @@ -22,7 +22,13 @@ "api-invalid-label", "api-replacement-encodings", "api-surrogates-utf8", - // TODO(lucacasonato): enable encodeInto. It is buggy at the moment. + // TODO(lucacasonato): enable encodeInto. We have a bug in implementaiton. + // { + // "name": "encodeInto", + // "expectFail": [ + // "encodeInto() and a detached output buffer" + // ] + // }, // "encodeInto", // TODO(lucacasonato): enable when we support iso-2022-jp // "iso-2022-jp-decoder", @@ -110,7 +116,7 @@ "utf-16le => UTF-16LE", "x-user-defined => x-user-defined" ] - } + }, // TODO(lucacasonato): enable when we have stream support // "textdecoder-streaming", // TODO(lucacasonato): enable when we support utf-16 @@ -134,5 +140,8 @@ // "textencoder-utf16-surrogates", // TODO(lucacasonato): uses XMLHttpRequest unnecessarily. should be fixed upstream before enabling // "unsupported-encodings", + ], + "dom": [ + "abort/event" ] } |