| 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 fd341208f6d3b16d4bca85a44704212991392dc1..aeb87022add589d4dea90b7a6363fd4627fc46c7 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
|
| @@ -398,7 +398,7 @@ InspectorTest.waitUntilNthMessageReceivedPromise = function(count)
|
|
|
| InspectorTest.changeExecutionContext = function(namePrefix)
|
| {
|
| - var selector = WebInspector.ConsoleView.instance()._executionContextModel._selectElement;
|
| + var selector = WebInspector.ConsoleView.instance()._consoleContextSelector._selectElement;
|
| var option = selector.firstChild;
|
| while (option) {
|
| if (option.textContent && option.textContent.startsWith(namePrefix))
|
| @@ -410,7 +410,7 @@ InspectorTest.changeExecutionContext = function(namePrefix)
|
| return;
|
| }
|
| option.selected = true;
|
| - WebInspector.ConsoleView.instance()._executionContextModel._executionContextChanged();
|
| + WebInspector.ConsoleView.instance()._consoleContextSelector._executionContextChanged();
|
| }
|
|
|
| InspectorTest.waitForConsoleMessages = function(expectedCount, callback)
|
|
|