| Index: Source/devtools/front_end/console/ConsoleView.js
|
| diff --git a/Source/devtools/front_end/console/ConsoleView.js b/Source/devtools/front_end/console/ConsoleView.js
|
| index aaef5d69e36f3bda53925e0e26d8aae4e4f807a0..fe6e457f6b8abf6246637761d029267d3c2b7f02 100644
|
| --- a/Source/devtools/front_end/console/ConsoleView.js
|
| +++ b/Source/devtools/front_end/console/ConsoleView.js
|
| @@ -103,6 +103,10 @@ WebInspector.ConsoleView = function()
|
| this._promptElement.id = "console-prompt";
|
| this._promptElement.spellcheck = false;
|
|
|
| + // FIXME: This is a workaround for the selection machinery bug. See crbug.com/410899
|
| + var selectAllFixer = this._messagesElement.createChild("div", "console-view-fix-select-all");
|
| + selectAllFixer.textContent = ".";
|
| +
|
| this._showAllMessagesCheckbox = new WebInspector.StatusBarCheckbox(WebInspector.UIString("Show all messages"));
|
| this._showAllMessagesCheckbox.inputElement.checked = true;
|
| this._showAllMessagesCheckbox.inputElement.addEventListener("change", this._updateMessageList.bind(this), false);
|
|
|