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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/fetch/window/response-stream-construction-base-https-other-https.html

Issue 1506023003: Response construction with a ReadableStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 <head> 2 <head>
3 <meta name="timeout" content="long"></meta> 3 <meta name="timeout" content="long"></meta>
4 <script src = "/resources/testharness.js"></script> 4 <script src = "/resources/testharness.js"></script>
5 <script src = "/resources/testharness-helpers.js"></script> 5 <script src = "/resources/testharness-helpers.js"></script>
6 <script src = "/resources/testharnessreport.js"></script> 6 <script src = "/resources/testharnessreport.js"></script>
7 <script src = "/serviceworker/resources/test-helpers.js"></script> 7 <script src = "/serviceworker/resources/test-helpers.js"></script>
8 <script src = "../resources/fetch-test-options.js"></script> 8 <script src = "../resources/fetch-test-options.js"></script>
9 <script src = "../resources/fetch-test-helpers.js"></script> 9 <script src = "../resources/fetch-test-helpers.js"></script>
10 </head> 10 </head>
11 <body> 11 <body>
12 <script> 12 <script>
13 function start(t) { 13 function start(t) {
14 var script = document.createElement('script'); 14 var script = document.createElement('script');
15 script.src = '../script-tests/TESTNAME.js?OPTIONS'; 15 script.src = '../script-tests/response-stream-construction.js?-base-https-othe r-https';
tyoshino (SeeGerritForStatus) 2015/12/10 13:49:37 is -other-https necessary?
16 script.addEventListener( 16 script.addEventListener(
17 'error', 17 'error',
18 function() { unreached_rejection(t); }); 18 function() { unreached_rejection(t); });
19 script.addEventListener( 19 script.addEventListener(
20 'load', 20 'load',
21 function() { t.done(); }); 21 function() { t.done(); });
22 document.body.appendChild(script); 22 document.body.appendChild(script);
23 } 23 }
24 function init() { 24 function init() {
25 return Promise.resolve(); 25 return Promise.resolve();
26 } 26 }
27 </script> 27 </script>
28 <script src = "../resources/init.js"></script> 28 <script src = "../resources/init.js"></script>
29 </body> 29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698