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

Side by Side Diff: LayoutTests/http/tests/fetch/window/fetch-body-mixin.html

Issue 1267263003: Rename fetch layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <head>
3 <meta name="timeout" content="long"></meta>
4 <script src = "/resources/testharness.js"></script>
5 <script src = "/resources/testharness-helpers.js"></script>
6 <script src = "/resources/testharnessreport.js"></script>
7 <script src = "/serviceworker/resources/test-helpers.js"></script>
8 <script src = "../resources/fetch-test-options.js"></script>
9 <script src = "../resources/fetch-test-helpers.js"></script>
10 </head>
11 <body>
12 <script>
13 function start(t) {
14 var script = document.createElement('script');
15 script.src = '../script-tests/fetch-body-mixin.js?';
16 script.addEventListener(
17 'error',
18 function() { unreached_rejection(t); });
19 script.addEventListener(
20 'load',
21 function() { t.done(); });
22 document.body.appendChild(script);
23 }
24 function init() {
25 return Promise.resolve();
26 }
27 </script>
28 <script src = "../resources/init.js"></script>
29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698