Title: [266193] trunk/Source/WebInspectorUI
Revision
266193
Author
[email protected]
Date
2020-08-26 14:32:50 -0700 (Wed, 26 Aug 2020)

Log Message

Web Inspector: REGRESSION(r266074): cannot edit _javascript_ breakpoints
https://bugs.webkit.org/show_bug.cgi?id=215860

Reviewed by Brian Burg.

* UserInterface/Models/_javascript_Breakpoint.js:
(WI._javascript_Breakpoint.prototype.get editable):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (266192 => 266193)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-08-26 21:05:01 UTC (rev 266192)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-08-26 21:32:50 UTC (rev 266193)
@@ -1,3 +1,13 @@
+2020-08-26  Devin Rousso  <[email protected]>
+
+        Web Inspector: REGRESSION(r266074): cannot edit _javascript_ breakpoints
+        https://bugs.webkit.org/show_bug.cgi?id=215860
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Models/_javascript_Breakpoint.js:
+        (WI._javascript_Breakpoint.prototype.get editable):
+
 2020-08-24  Devin Rousso  <[email protected]>
 
         Web Inspector: remove legacy code for replacing the Resources Tab and Debugger Tab with the Sources Tab

Modified: trunk/Source/WebInspectorUI/UserInterface/Models/_javascript_Breakpoint.js (266192 => 266193)


--- trunk/Source/WebInspectorUI/UserInterface/Models/_javascript_Breakpoint.js	2020-08-26 21:05:01 UTC (rev 266192)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/_javascript_Breakpoint.js	2020-08-26 21:32:50 UTC (rev 266193)
@@ -124,7 +124,7 @@
             return false;
         }
 
-        return super.editable;
+        return true;
     }
 
     get identifier()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to