From: apavlov@chromium.org Date: Tue, 21 Feb 2012 19:17:40 +0000 (+0000) Subject: Web Inspector: it is nearly impossible to select and copy text on the Elements panel. X-Git-Tag: 070512121124~12275 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=388f38f6f7df77c602b03089d29b4af9dcb18ff8;p=profile%2Fivi%2Fwebkit-efl.git 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): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108374 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index a47bd2a..4724c87 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,14 @@ +2012-02-21 Alexander Pavlov + + 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 Crash in RenderTableSection::nodeAtPoint. diff --git a/Source/WebCore/inspector/front-end/inspector.js b/Source/WebCore/inspector/front-end/inspector.js index 1766233..05fa8e2 100644 --- a/Source/WebCore/inspector/front-end/inspector.js +++ b/Source/WebCore/inspector/front-end/inspector.js @@ -557,7 +557,7 @@ WebInspector.documentClick = function(event) function followLink() { - if (WebInspector._showAnchorLocation(anchor)) + if (WebInspector.isInEditMode(event) || WebInspector._showAnchorLocation(anchor)) return; const profileMatch = WebInspector.ProfileType.URLRegExp.exec(anchor.href);