| 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 51127668659fb6af1dc99d6c78316ec8046592ab..46a1fa5e6479a30187cf4e565956a5ea0f5f8524 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
|
| @@ -396,7 +396,7 @@ InspectorTest.changeExecutionContext = function(namePrefix)
|
| var selector = Console.ConsoleView.instance()._consoleContextSelector._selectElement;
|
| var option = selector.firstChild;
|
| while (option) {
|
| - if (option.textContent && option.textContent.startsWith(namePrefix))
|
| + if (option.textContent && option.textContent.trim().startsWith(namePrefix))
|
| break;
|
| option = option.nextSibling;
|
| }
|
|
|