Title: [142145] trunk/Source/WebCore
Revision
142145
Author
[email protected]
Date
2013-02-07 10:03:17 -0800 (Thu, 07 Feb 2013)

Log Message

Web Inspector: linkifyResourceAsNode produced anchor should not prefer resources to scripts panel.
https://bugs.webkit.org/show_bug.cgi?id=109197

Reviewed by Pavel Feldman.

_javascript_ syntax errors in console are now linkified so that they show sources panel by default.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142144 => 142145)


--- trunk/Source/WebCore/ChangeLog	2013-02-07 17:55:17 UTC (rev 142144)
+++ trunk/Source/WebCore/ChangeLog	2013-02-07 18:03:17 UTC (rev 142145)
@@ -1,3 +1,15 @@
+2013-02-07  Vsevolod Vlasov  <[email protected]>
+
+        Web Inspector: linkifyResourceAsNode produced anchor should not prefer resources to scripts panel.
+        https://bugs.webkit.org/show_bug.cgi?id=109197
+
+        Reviewed by Pavel Feldman.
+
+        _javascript_ syntax errors in console are now linkified so that they show sources panel by default.
+
+        * inspector/front-end/ResourceUtils.js:
+        (WebInspector.linkifyResourceAsNode):
+
 2013-02-07  Eberhard Graether  <[email protected]>
 
         Web Inspector: Add settings checkbox for composited layer borders

Modified: trunk/Source/WebCore/inspector/front-end/ResourceUtils.js (142144 => 142145)


--- trunk/Source/WebCore/inspector/front-end/ResourceUtils.js	2013-02-07 17:55:17 UTC (rev 142144)
+++ trunk/Source/WebCore/inspector/front-end/ResourceUtils.js	2013-02-07 18:03:17 UTC (rev 142145)
@@ -213,7 +213,6 @@
 {
     var linkText = WebInspector.formatLinkText(url, lineNumber);
     var anchor = WebInspector.linkifyURLAsNode(url, linkText, classes, false, tooltipText);
-    anchor.preferredPanel = "resources";
     anchor.lineNumber = lineNumber;
     return anchor;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to