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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-event-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 'use strict';
4
3 fetch('body-stream').then(resp => { 5 fetch('body-stream').then(resp => {
4 return resp.text(); 6 return resp.text();
5 }).then(text => parent.done(text)) 7 }).then(text => parent.done(text))
6 .catch(e => parent.done('FAIL: ' + e)); 8 .catch(e => parent.done('FAIL: ' + e));
7 </script> 9 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698