Chromium Code Reviews| 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 5765551c6947a83ae5a6a7ebe6a387f560702c0e..5df3c50949c53ae2408611aa3657d8544a33a170 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,7 +7,7 @@ console.log("message from page!"); |
| function test() |
| { |
| - var checkbox = Console.ConsoleView.instance()._showAllMessagesCheckbox.inputElement; |
| + var checkbox = Console.ConsoleView.instance()._filter._showTargetMessagesCheckbox.inputElement; |
| //we can't use usual InspectorTest.dumpConsoleMessages(), because it dumps url of message and it flakes in case of iframe |
| function dumpVisibleConsoleMessageText() |
| @@ -22,8 +22,8 @@ function test() |
| function testInitialState(next) |
| { |
| - if (!checkbox.checked) |
| - InspectorTest.addResult("\"Show all messages\" checkbox should be checked by default"); |
| + if (checkbox.checked) |
| + InspectorTest.addResult("\"Show all messages\" checkbox should be unchecked by default"); |
|
dgozman
2017/01/31 04:21:29
Show all messages -> Show target messages
|
| dumpVisibleConsoleMessageText(); |
| next(); |
| }, |
| @@ -57,7 +57,7 @@ function test() |
| <body> |
| <p> |
| -Tests that console shows messages only from specific context when show all checkbox is unchecked.</a> |
| +Tests that console shows messages only from specific context when show target checkbox is checked.</a> |
| </p> |
| <iframe name="myIFrame" src="resources/console-show-all-messages-iframe.html" onload="runTest()"></iframe> |