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

Side by Side Diff: LayoutTests/http/tests/fetch/window/thorough/scheme-blob-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/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 = "/resources/get-host-info.js?pipe=sub"></script> 7 <script src = "/resources/get-host-info.js?pipe=sub"></script>
8 <script src = "/serviceworker/resources/test-helpers.js"></script> 8 <script src = "/serviceworker/resources/test-helpers.js"></script>
9 <script src = "/fetch/resources/fetch-test-options.js"></script> 9 <script src = "/fetch/resources/fetch-test-options.js"></script>
10 <script src = "/fetch/resources/fetch-test-helpers.js"></script> 10 <script src = "/fetch/resources/fetch-test-helpers.js"></script>
11 <script src = "/fetch/resources/thorough-util.js"></script> 11 <script src = "/fetch/resources/thorough-util.js"></script>
12 <script src = "/fetch/script-tests/thorough/auth-nocors.js?-other-https"></scrip t> 12 <script src = "/fetch/script-tests/thorough/scheme-blob.js?-other-https"></scrip t>
13 </head> 13 </head>
14 <body> 14 <body>
15 <script> 15 <script>
16 var host_info = get_host_info(); 16 var host_info = get_host_info();
17 function start(t) { 17 function start(t) {
18 executeTests(TEST_TARGETS); 18 executeTests(TEST_TARGETS);
19 t.done(); 19 t.done();
20 } 20 }
21 function init(test) { 21 function init(test) {
22 return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN']) 22 return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN'])
23 .then(function() { 23 .then(function() {
24 return login(test, host_info['HTTPS_ORIGIN'], 24 return login(test, host_info['HTTPS_ORIGIN'],
25 host_info['HTTPS_REMOTE_ORIGIN']); 25 host_info['HTTPS_REMOTE_ORIGIN']);
26 }); 26 });
27 } 27 }
28 </script> 28 </script>
29 <script src = "/fetch/resources/init.js"></script> 29 <script src = "/fetch/resources/init.js"></script>
30 </body> 30 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698