Title: [89342] trunk/Source/WebCore
Revision
89342
Author
pfeld...@chromium.org
Date
2011-06-21 01:43:30 -0700 (Tue, 21 Jun 2011)

Log Message

2011-06-21  Pavel Feldman  <pfeld...@chromium.org>

        Reviewed by Yury Semikhatsky.

        Web Inspector: hovering over linkified nodes
        in the UI does not highlight elements on the page.
        https://bugs.webkit.org/show_bug.cgi?id=60630

        * inspector/front-end/inspector.js:
        (WebInspector.wireElementWithDOMNode):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89341 => 89342)


--- trunk/Source/WebCore/ChangeLog	2011-06-21 07:10:48 UTC (rev 89341)
+++ trunk/Source/WebCore/ChangeLog	2011-06-21 08:43:30 UTC (rev 89342)
@@ -1,3 +1,14 @@
+2011-06-21  Pavel Feldman  <pfeld...@chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: hovering over linkified nodes
+        in the UI does not highlight elements on the page.
+        https://bugs.webkit.org/show_bug.cgi?id=60630
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.wireElementWithDOMNode):
+
 2011-06-20  Yuzo Fujishima  <y...@google.com>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/WebCore/inspector/front-end/inspector.js (89341 => 89342)


--- trunk/Source/WebCore/inspector/front-end/inspector.js	2011-06-21 07:10:48 UTC (rev 89341)
+++ trunk/Source/WebCore/inspector/front-end/inspector.js	2011-06-21 08:43:30 UTC (rev 89342)
@@ -319,7 +319,7 @@
     wireElementWithDOMNode: function(element, nodeId)
     {
         element.addEventListener("click", this._updateFocusedNode.bind(this, nodeId), false);
-        element.addEventListener("mouseover", this.highlightDOMNode.bind(this, nodeId), false);
+        element.addEventListener("mouseover", this.highlightDOMNode.bind(this, nodeId, "all"), false);
         element.addEventListener("mouseout", this.highlightDOMNode.bind(this, 0), false);
     },
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to