Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/respond-with-response-body-with-invalid-chunk-iframe.html

Issue 2893793004: Upstream service wrkr "respond with" tests to WPT (Closed)
Patch Set: Remove declaration of unused binding Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>respond-with-response-body-with-invalid-chunk</title>
4 <body></body>
5 <script>
6 fetch('body-stream-with-invalid-chunk').then(resp => {
7 const reader = resp.body.getReader();
8 return reader.read().then(
9 () => parent.done('FAIL: read() should be rejected'),
10 () => parent.done('PASS'));
11 }).catch(e => parent.done('FAIL: ' + e));
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698