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

Side by Side Diff: LayoutTests/http/tests/fetch/chromium/error-messages.html

Issue 1018903002: Show deprecation warnings for header values in XHR according to RFC 7230 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 <script src="/resources/testharness.js"></script> 2 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script> 3 <script src="/resources/testharnessreport.js"></script>
4 <script src="/resources/testharness-helpers.js"></script> 4 <script src="/resources/testharness-helpers.js"></script>
5 <script src="../resources/fetch-test-helpers.js"></script> 5 <script src="../resources/fetch-test-helpers.js"></script>
6 <script> 6 <script>
7 promise_test(function(t) { 7 promise_test(function(t) {
8 return fetch('../resources/doctype.html') 8 return fetch('../resources/doctype.html')
9 .then(function() {}, t.unreached_func('must resolve')); 9 .then(function() {}, t.unreached_func('must resolve'));
10 }, 'fetch() with 200 should not output error messages'); 10 }, 'fetch() with 200 should not output error messages');
(...skipping 24 matching lines...) Expand all
35 .then(t.unreached_func('must reject'), function() {}); 35 .then(t.unreached_func('must reject'), function() {});
36 }, 'A didFailAccessControlCheck() error should output an error message'); 36 }, 'A didFailAccessControlCheck() error should output an error message');
37 37
38 // A didFailRedirectCheck() error 38 // A didFailRedirectCheck() error
39 // that has NO console error messages from outside modules/fetch, 39 // that has NO console error messages from outside modules/fetch,
40 // and thus we OUTPUT a message from modules/fetch. 40 // and thus we OUTPUT a message from modules/fetch.
41 promise_test(function(t) { 41 promise_test(function(t) {
42 return fetch('http://localhost:8000/fetch/resources/redirect-loop.php?Count= 100&ACAOrigin=*') 42 return fetch('http://localhost:8000/fetch/resources/redirect-loop.php?Count= 100&ACAOrigin=*')
43 .then(t.unreached_func('must reject'), function() {}); 43 .then(t.unreached_func('must reject'), function() {});
44 }, 'A didFailRedirectCheck() error should output an error message'); 44 }, 'A didFailRedirectCheck() error should output an error message');
45
46 promise_test(function(t) {
47 return Promise.resolve()
48 .then(function() {
49 var headers = new Headers();
50 headers.set('a', 't');
51 headers.append('X-Test', 't ');
52 });
53 }, 'A deprecation warning should be output for heders.append and set');
45 </script> 54 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698