Title: [193044] branches/safari-601-branch/Source/WebInspectorUI
Revision
193044
Author
[email protected]
Date
2015-12-03 10:34:49 -0800 (Thu, 03 Dec 2015)

Log Message

Merge r187700. rdar://problem/23221163

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193043 => 193044)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:34:45 UTC (rev 193043)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:34:49 UTC (rev 193044)
@@ -1,5 +1,24 @@
 2015-12-01  Timothy Hatcher  <[email protected]>
 
+        Merge r187700. rdar://problem/23221163
+
+    2015-07-31  Devin Rousso  <[email protected]>
+
+            Web Inspector: Scrolling "jumps" in console
+            https://bugs.webkit.org/show_bug.cgi?id=147482
+
+            Reviewed by Joseph Pecoraro.
+
+            Removed focus call on messageElement.
+
+            * UserInterface/Views/LogContentView.js:
+            (WebInspector.LogContentView):
+            (WebInspector.LogContentView.prototype._mousedown): Deleted.
+            (WebInspector.LogContentView.prototype._didFocus): Deleted.
+            (WebInspector.LogContentView.prototype._didBlur): Deleted.
+
+2015-12-01  Timothy Hatcher  <[email protected]>
+
         Merge r187689. rdar://problem/23221163
 
     2015-07-31  Brian J. Burg  <[email protected]>

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LogContentView.js (193043 => 193044)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2015-12-03 18:34:45 UTC (rev 193043)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2015-12-03 18:34:49 UTC (rev 193044)
@@ -42,8 +42,6 @@
     this.messagesElement.tabIndex = 0;
     this.messagesElement.setAttribute("role", "log");
     this.messagesElement.addEventListener("mousedown", this._mousedown.bind(this));
-    this.messagesElement.addEventListener("focus", this._didFocus.bind(this));
-    this.messagesElement.addEventListener("blur", this._didBlur.bind(this));
     this.messagesElement.addEventListener("keydown", this._keyDown.bind(this));
     this.messagesElement.addEventListener("dragstart", this._ondragstart.bind(this), true);
     this.element.appendChild(this.messagesElement);
@@ -409,9 +407,6 @@
             return;
         }
 
-        if (!this._focused)
-            this.messagesElement.focus();
-
         this._mouseDownWrapper = event.target.enclosingNodeOrSelfWithClass(WebInspector.LogContentView.ItemWrapperStyleClassName);
         this._mouseDownShiftKey = event.shiftKey;
         this._mouseDownCommandKey = event.metaKey;
@@ -732,16 +727,6 @@
         this._performSearch();
     },
 
-    _didFocus: function(event)
-    {
-        this._focused = true;
-    },
-
-    _didBlur: function(event)
-    {
-        this._focused = false;
-    },
-
     _keyDown: function(event)
     {
         if (this._keyboardShortcutCommandA.matchesEvent(event))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to