summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlushnikov@chromium.org <lushnikov@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-06-23 15:32:10 +0000
committerlushnikov@chromium.org <lushnikov@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-06-23 15:32:10 +0000
commit4177e7d27269c03be06abd506b4fc5e3f9b81820 (patch)
tree9e05cef1bd7e5f52da2fb6b0d26f48098808fb21
parent7f2876b460e2ce0e6936fe5b766b0efe682dda59 (diff)
downloadchromium-4177e7d27269c03be06abd506b4fc5e3f9b81820.tar.gz
chromium-4177e7d27269c03be06abd506b4fc5e3f9b81820.tar.bz2
chromium-4177e7d27269c03be06abd506b4fc5e3f9b81820.zip
DevTools: [Console] remove unnecessary br element
This "br" seems to be a leftover of old implementation. TBR=pfeldman Review URL: https://codereview.chromium.org/353453003 git-svn-id: svn://svn.chromium.org/blink/trunk@176759 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-rw-r--r--Source/devtools/front_end/console/ConsoleView.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/devtools/front_end/console/ConsoleView.js b/Source/devtools/front_end/console/ConsoleView.js
index 5a178c4b5477..c23ecc74bdbe 100644
--- a/Source/devtools/front_end/console/ConsoleView.js
+++ b/Source/devtools/front_end/console/ConsoleView.js
@@ -104,7 +104,6 @@ WebInspector.ConsoleView = function(hideContextSelector)
this._promptElement.id = "console-prompt";
this._promptElement.spellcheck = false;
this._messagesElement.appendChild(this._promptElement);
- this._messagesElement.appendChild(document.createElement("br"));
this._showAllMessagesCheckbox = new WebInspector.StatusBarCheckbox(WebInspector.UIString("Show all messages"));
this._showAllMessagesCheckbox.inputElement.checked = true;