| Index: third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| index 14fdc8597bf85d29fb21e07e1cc962cf6866bd72..e860260481d14c4155bc7754c48370b7ea157f42 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/inspector-test.js
|
| @@ -1,7 +1,8 @@
|
| if (window.GCController)
|
| GCController.collectAll();
|
| -var initialize_InspectorTest = function() {
|
|
|
| +var initialize_InspectorTest = function() {
|
| +Protocol.InspectorBackend.Options.suppressRequestErrors = true;
|
| var results = [];
|
|
|
| function consoleOutputHook(messageType)
|
| @@ -1159,7 +1160,7 @@ function runTest(pixelTest, enableWatchDogWhileDebugging)
|
| testRunner.evaluateInWebInspector(initializeCallId, toEvaluate);
|
|
|
| if (window.debugTest)
|
| - test = "function() { window.test = " + test.toString() + "; InspectorTest.addResult = window._originalConsoleLog; InspectorTest.completeTest = function() {}; }";
|
| + test = "function() { Protocol.InspectorBackend.Options.suppressRequestErrors = false; window.test = " + test.toString() + "; InspectorTest.addResult = window._originalConsoleLog; InspectorTest.completeTest = function() {}; }";
|
| toEvaluate = "(" + runTestInFrontend + ")(" + test + ");";
|
| testRunner.evaluateInWebInspector(runTestCallId, toEvaluate);
|
|
|
|
|