Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js |
| index 46a1fa5e6479a30187cf4e565956a5ea0f5f8524..8aab4bb2b9df0b3f73a96f590621f51eaa515177 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js |
| @@ -91,8 +91,9 @@ InspectorTest.dumpConsoleMessages = function(printOriginatingCommand, dumpClassN |
| InspectorTest.addResults(InspectorTest.dumpConsoleMessagesIntoArray(printOriginatingCommand, dumpClassNames, formatter)); |
| } |
| -InspectorTest.dumpConsoleMessagesIntoArray = function(printOriginatingCommand, dumpClassNames, formatter) |
| +InspectorTest.dumpConsoleMessagesIntoArray = function(printOriginatingCommand, dumpClassNames, formatter, level) |
| { |
| + Common.settingForTest('messageLevelFilters2').set(level || SDK.ConsoleMessage.MessageLevel.Verbose); |
|
chenwilliam
2017/01/31 22:28:37
This was needed for inspector/console/console.time
luoe
2017/02/01 02:39:04
Let's not even provide an option right now.
chenwilliam
2017/02/01 23:43:44
Done.
|
| formatter = formatter || InspectorTest.prepareConsoleMessageText; |
| var result = []; |
| InspectorTest.disableConsoleViewport(); |