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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/respond-with-readable-stream-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 <script>
3 fetch('body-stream').then(resp => {
4 return resp.text();
5 }).then(text => parent.done(text))
6 .catch(e => parent.done('FAIL: ' + e));
7 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698