Title: [155154] trunk/Source/WebInspectorUI
- Revision
- 155154
- Author
- [email protected]
- Date
- 2013-09-05 15:11:29 -0700 (Thu, 05 Sep 2013)
Log Message
Web Inspector: Remove harmless assert, triggered hitting breakpoint in auto prettyprinted code on reload
https://bugs.webkit.org/show_bug.cgi?id=120332
Patch by Joseph Pecoraro <[email protected]> on 2013-09-05
Reviewed by Timothy Hatcher.
* UserInterface/TextEditor.js:
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (155153 => 155154)
--- trunk/Source/WebInspectorUI/ChangeLog 2013-09-05 22:06:31 UTC (rev 155153)
+++ trunk/Source/WebInspectorUI/ChangeLog 2013-09-05 22:11:29 UTC (rev 155154)
@@ -1,5 +1,14 @@
2013-09-05 Joseph Pecoraro <[email protected]>
+ Web Inspector: Remove harmless assert, triggered hitting breakpoint in auto prettyprinted code on reload
+ https://bugs.webkit.org/show_bug.cgi?id=120332
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/TextEditor.js:
+
+2013-09-05 Joseph Pecoraro <[email protected]>
+
Web Inspector: Breakpoint Actions
https://bugs.webkit.org/show_bug.cgi?id=120576
Modified: trunk/Source/WebInspectorUI/UserInterface/TextEditor.js (155153 => 155154)
--- trunk/Source/WebInspectorUI/UserInterface/TextEditor.js 2013-09-05 22:06:31 UTC (rev 155153)
+++ trunk/Source/WebInspectorUI/UserInterface/TextEditor.js 2013-09-05 22:11:29 UTC (rev 155154)
@@ -1180,7 +1180,6 @@
}
if (!isNaN(this._executionLineNumber)) {
- console.assert(this._executionLineHandle);
console.assert(!isNaN(this._executionColumnNumber));
newExecutionLocation = this._formatterSourceMap.originalToFormatted(this._executionLineNumber, this._executionColumnNumber);
}
@@ -1204,7 +1203,6 @@
}
if (!isNaN(this._executionLineNumber)) {
- console.assert(this._executionLineHandle);
console.assert(!isNaN(this._executionColumnNumber));
newExecutionLocation = this._formatterSourceMap.formattedToOriginal(this._executionLineNumber, this._executionColumnNumber);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes