Title: [108374] trunk/Source/WebCore
Revision
108374
Author
[email protected]
Date
2012-02-21 11:17:40 -0800 (Tue, 21 Feb 2012)

Log Message

Web Inspector: it is nearly impossible to select and copy text on the Elements panel.
https://bugs.webkit.org/show_bug.cgi?id=60814

Reviewed by Pavel Feldman.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108373 => 108374)


--- trunk/Source/WebCore/ChangeLog	2012-02-21 19:13:34 UTC (rev 108373)
+++ trunk/Source/WebCore/ChangeLog	2012-02-21 19:17:40 UTC (rev 108374)
@@ -1,3 +1,14 @@
+2012-02-21  Alexander Pavlov  <[email protected]>
+
+        Web Inspector: it is nearly impossible to select and copy text on the Elements panel.
+        https://bugs.webkit.org/show_bug.cgi?id=60814
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.documentClick.followLink):
+        (WebInspector.documentClick):
+
 2012-02-21  Abhishek Arya  <[email protected]>
 
         Crash in RenderTableSection::nodeAtPoint.

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


--- trunk/Source/WebCore/inspector/front-end/inspector.js	2012-02-21 19:13:34 UTC (rev 108373)
+++ trunk/Source/WebCore/inspector/front-end/inspector.js	2012-02-21 19:17:40 UTC (rev 108374)
@@ -557,7 +557,7 @@
 
     function followLink()
     {
-        if (WebInspector._showAnchorLocation(anchor))
+        if (WebInspector.isInEditMode(event) || WebInspector._showAnchorLocation(anchor))
             return;
 
         const profileMatch = WebInspector.ProfileType.URLRegExp.exec(anchor.href);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to