Title: [246602] trunk/Source/WebInspectorUI
Revision
246602
Author
[email protected]
Date
2019-06-19 11:59:00 -0700 (Wed, 19 Jun 2019)

Log Message

Web Inspector: Uncaught Exception: TypeError: undefined is not an object (evaluating 'sourceCodePosition.lineNumber')
https://bugs.webkit.org/show_bug.cgi?id=199019

Reviewed by Matt Baker.

* UserInterface/Base/Main.js:
(WI.linkifyLocation):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (246601 => 246602)


--- trunk/Source/WebInspectorUI/ChangeLog	2019-06-19 18:45:22 UTC (rev 246601)
+++ trunk/Source/WebInspectorUI/ChangeLog	2019-06-19 18:59:00 UTC (rev 246602)
@@ -1,3 +1,13 @@
+2019-06-19  Devin Rousso  <[email protected]>
+
+        Web Inspector: Uncaught Exception: TypeError: undefined is not an object (evaluating 'sourceCodePosition.lineNumber')
+        https://bugs.webkit.org/show_bug.cgi?id=199019
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Base/Main.js:
+        (WI.linkifyLocation):
+
 2019-06-19  Zhifei Fang  <[email protected]>
 
         Correct the error object link color in dark mode.

Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Main.js (246601 => 246602)


--- trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2019-06-19 18:45:22 UTC (rev 246601)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2019-06-19 18:59:00 UTC (rev 246602)
@@ -2850,7 +2850,7 @@
 {
     var sourceCode = WI.sourceCodeForURL(url);
     if (sourceCode)
-        return WI.linkifySourceCode(sourceCode);
+        return WI.linkifySourceCode(sourceCode, sourceCodePosition, options);
 
     var anchor = document.createElement("a");
     anchor.href = ""
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to