diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-04-14 22:49:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 22:49:16 +0200 |
commit | 353e79c796efc6c6aa328abb4d7cef5e642944af (patch) | |
tree | 5ae6d1778c0a1dfa53ac62e409d6da8cdb31285f /tools | |
parent | 5214acd3d9dec56ee159544f0f6bf9834a62c097 (diff) |
chore: align FormData to spec (#10169)
This PR aligns `FormData` to spec. All WPT tests are passing.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/wpt/expectation.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 587bd69c8..98fc105d5 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -578,6 +578,10 @@ "Parsing: <file://example.net/C:/> against <about:blank>", "Parsing: <file://1.2.3.4/C:/> against <about:blank>", "Parsing: <file://[1::8]/C:/> against <about:blank>", + "Parsing: <C|/> against <file://host/>", + "Parsing: </C:/> against <file://host/>", + "Parsing: <file:C:/> against <file://host/>", + "Parsing: <file:/C:/> against <file://host/>", "Parsing: <file://localhost//a//../..//foo> against <about:blank>", "Parsing: <file://localhost////foo> against <about:blank>", "Parsing: <file:////foo> against <about:blank>", @@ -753,5 +757,17 @@ "queue-microtask.any.js": true } } + }, + "xhr": { + "formdata": { + "append.any.js": true, + "constructor.any.js": true, + "delete.any.js": true, + "foreach.any.js": true, + "get.any.js": true, + "has.any.js": true, + "set-blob.any.js": true, + "set.any.js": true + } } }
\ No newline at end of file |