| 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 c00830cc46cf163fb99c93608d7116daedc4e87c..54be7f863c992d2a9dc1d5004b3bd91e4ebdb5a1 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.ConsolePanel._view()._showAllMessagesCheckbox.inputElement;
|
| + var checkbox = WebInspector.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.ConsolePanel._view()._visibleViewMessages;
|
| + var messageViews = WebInspector.ConsoleView.instance()._visibleViewMessages;
|
| for (var i = 0; i < messageViews.length; ++i) {
|
| InspectorTest.addResult(messageViews[i].consoleMessage().messageText);
|
| }
|
|
|