Chromium Code Reviews| Index: chrome/test/data/webui/net_internals/sdch_view.js |
| diff --git a/chrome/test/data/webui/net_internals/sdch_view.js b/chrome/test/data/webui/net_internals/sdch_view.js |
| index d79b8a0e064843b9844ba7b131803cac88986fcd..a0eb6eaf3f47a3a35d3f86eb86f36fc776447533 100644 |
| --- a/chrome/test/data/webui/net_internals/sdch_view.js |
| +++ b/chrome/test/data/webui/net_internals/sdch_view.js |
| @@ -2,6 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +// TODO(rdsmith) Note that SDCH has been disabled in Chrome as of M59. |
|
eroman
2017/03/30 17:00:24
Please put this in the implementation file rather
|
| +// This code is being retained for examining dumps generated before that |
| +// milestone. It's probably fine to remove it in M64 or later. |
| + |
| // Include test fixture. |
| GEN_INCLUDE(['net_internals_test.js']); |
| @@ -174,48 +178,4 @@ LoadPageWithDecodeErrorTask.prototype = { |
| } |
| }; |
| -/** |
| - * Load a page, which results in downloading a SDCH dictionary. Make sure its |
| - * data is displayed. |
| - */ |
| -TEST_F('NetInternalsTest', 'netInternalsSdchViewFetchDictionary', function() { |
| - var taskQueue = new NetInternalsTest.TaskQueue(true); |
| - taskQueue.addTask( |
| - new NetInternalsTest.GetTestServerURLTask( |
| - BASE_PATH + encodeURI('/sdch/page.html'))); |
| - taskQueue.addTask(new LoadSdchDictionaryTask()); |
| - taskQueue.run(); |
| -}); |
| - |
| -/** |
| - * Load a page, get the dictionary for it, and get decoding error to see |
| - * the blacklist in action. |
| - */ |
| -TEST_F('NetInternalsTest', 'netInternalsSdchViewBlacklistMeta', function() { |
| - var taskQueue = new NetInternalsTest.TaskQueue(true); |
| - taskQueue.addTask( |
| - new NetInternalsTest.GetTestServerURLTask( |
| - BASE_PATH + encodeURI('/sdch/page.html'))); |
| - taskQueue.addTask(new LoadSdchDictionaryTask()); |
| - taskQueue.addTask( |
| - new NetInternalsTest.GetTestServerURLTask( |
| - BASE_PATH + encodeURI('/sdch/non-html'))); |
| - taskQueue.addTask( |
| - new LoadPageWithDecodeErrorTask('META_REFRESH_UNSUPPORTED')); |
| - taskQueue.run(); |
| -}); |
| - |
| -/** |
| - * Load a page, which is said to be SDCH-encoded, though we don't expect it. |
| - */ |
| -TEST_F('NetInternalsTest', 'netInternalsSdchViewBlacklistNonSdch', function() { |
| - var taskQueue = new NetInternalsTest.TaskQueue(true); |
| - taskQueue.addTask( |
| - new NetInternalsTest.GetTestServerURLTask( |
| - BASE_PATH + encodeURI('/sdch/non-sdch.html'))); |
| - taskQueue.addTask( |
| - new LoadPageWithDecodeErrorTask('PASSING_THROUGH_NON_SDCH')); |
| - taskQueue.run(); |
| -}); |
| - |
| })(); // Anonymous namespace |