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

Side by Side Diff: LayoutTests/http/tests/fetch/workers/thorough/scheme-data-other-https.html

Issue 1283163003: [Fetch][WIP] Support blob:, about:, and data: URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup. Created 5 years, 3 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 <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/testharnessreport.js"></script> 5 <script src = "/resources/testharnessreport.js"></script>
6 <script src = "/resources/get-host-info.js?pipe=sub"></script> 6 <script src = "/resources/get-host-info.js?pipe=sub"></script>
7 <script src = "/serviceworker/resources/test-helpers.js"></script> 7 <script src = "/serviceworker/resources/test-helpers.js"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <script> 10 <script>
11 var host_info = get_host_info(); 11 var host_info = get_host_info();
12 function start(t) { 12 function start(t) {
13 fetch_tests_from_worker( 13 fetch_tests_from_worker(
14 new Worker('/fetch/script-tests/thorough/auth-nocors.js?-other-https')); 14 new Worker('/fetch/script-tests/thorough/scheme-data.js?-other-https'));
15 t.done(); 15 t.done();
16 } 16 }
17 function init(test) { 17 function init(test) {
18 return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN']) 18 return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN'])
19 .then(function() { 19 .then(function() {
20 return login(test, host_info['HTTPS_ORIGIN'], 20 return login(test, host_info['HTTPS_ORIGIN'],
21 host_info['HTTPS_REMOTE_ORIGIN']); 21 host_info['HTTPS_REMOTE_ORIGIN']);
22 }); 22 });
23 } 23 }
24 </script> 24 </script>
25 <script src = "/fetch/resources/init.js"></script> 25 <script src = "/fetch/resources/init.js"></script>
26 </body> 26 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698