| 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..73ea7ca1f72256f5f94311567d88e7432dcfc3a9 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 target messages\" checkbox should be unchecked by default");
|
| 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>
|
|
|
|
|