Skip to content

Commit df14944

Browse files
panvadanielleadams
authored andcommitted
test: update encoding WPTs
PR-URL: #46802 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent 928998d commit df14944

4 files changed

Lines changed: 42 additions & 2 deletions

File tree

‎test/fixtures/wpt/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Last update:
1414
- console: https://github.com/web-platform-tests/wpt/tree/767ae35464/console
1515
- dom/abort: https://github.com/web-platform-tests/wpt/tree/8fadb38120/dom/abort
1616
- dom/events: https://github.com/web-platform-tests/wpt/tree/ab8999891c/dom/events
17-
- encoding: https://github.com/web-platform-tests/wpt/tree/779d175c40/encoding
17+
- encoding: https://github.com/web-platform-tests/wpt/tree/0c1b9d1622/encoding
1818
- fetch/data-urls/resources: https://github.com/web-platform-tests/wpt/tree/7c79d998ff/fetch/data-urls/resources
1919
- FileAPI: https://github.com/web-platform-tests/wpt/tree/3b279420d4/FileAPI
2020
- FileAPI/file: https://github.com/web-platform-tests/wpt/tree/c01f637cca/FileAPI/file
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Text*Stream should still work even if the realm is detached.
2+
3+
// Adds an iframe to the document and returns it.
4+
functionaddIframe(){
5+
constiframe=document.createElement('iframe');
6+
document.body.appendChild(iframe);
7+
returniframe;
8+
}
9+
10+
promise_test(asynct=>{
11+
constiframe=addIframe();
12+
conststream=newiframe.contentWindow.TextDecoderStream();
13+
constreadPromise=stream.readable.getReader().read();
14+
constwriter=stream.writable.getWriter();
15+
awaitwriter.ready;
16+
iframe.remove();
17+
returnPromise.all([writer.write(newUint8Array([65])),readPromise]);
18+
},'TextDecoderStream: write in detached realm should succeed');
19+
20+
promise_test(asynct=>{
21+
constiframe=addIframe();
22+
conststream=newiframe.contentWindow.TextEncoderStream();
23+
constreadPromise=stream.readable.getReader().read();
24+
constwriter=stream.writable.getWriter();
25+
awaitwriter.ready;
26+
iframe.remove();
27+
returnPromise.all([writer.write('A'),readPromise]);
28+
},'TextEncoderStream: write in detached realm should succeed');
29+
30+
for(consttypeof['TextEncoderStream','TextDecoderStream']){
31+
promise_test(asynct=>{
32+
constiframe=addIframe();
33+
conststream=newiframe.contentWindow[type]();
34+
iframe.remove();
35+
returnstream.writable.close();
36+
},`${type}: close in detached realm should succeed`);
37+
}

‎test/fixtures/wpt/versions.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"path": "dom/events"
1717
},
1818
"encoding": {
19-
"commit": "779d175c40efcb8f2c9512bebe25ffbeda485708",
19+
"commit": "0c1b9d1622ae0f27f82d7f7d7a1e9e69d410a3ca",
2020
"path": "encoding"
2121
},
2222
"fetch/data-urls/resources": {

‎test/wpt/status/encoding.json‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
"streams/decode-ignore-bom.any.js": {
4949
"requires": ["small-icu"]
5050
},
51+
"streams/invalid-realm.window.js": {
52+
"skip": "document is not defined"
53+
},
5154
"streams/realms.window.js": {
5255
"skip": "window is not defined"
5356
},

0 commit comments

Comments
 (0)