| Index: third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html b/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
|
| index fbb08c2a3a211971973b1c2a00c3b5d1a1e956b8..5765551c6947a83ae5a6a7ebe6a387f560702c0e 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
|
| @@ -7,12 +7,12 @@ console.log("message from page!");
|
|
|
| function test()
|
| {
|
| - var checkbox = WebInspector.ConsoleView.instance()._showAllMessagesCheckbox.inputElement;
|
| + var checkbox = Console.ConsoleView.instance()._showAllMessagesCheckbox.inputElement;
|
|
|
| //we can't use usual InspectorTest.dumpConsoleMessages(), because it dumps url of message and it flakes in case of iframe
|
| function dumpVisibleConsoleMessageText()
|
| {
|
| - var messageViews = WebInspector.ConsoleView.instance()._visibleViewMessages;
|
| + var messageViews = Console.ConsoleView.instance()._visibleViewMessages;
|
| for (var i = 0; i < messageViews.length; ++i) {
|
| InspectorTest.addResult(messageViews[i].consoleMessage().messageText);
|
| }
|
|
|