Summary: | Web Inspector: provide an abstraction for CodeMirror's TextMarker | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Antoine Quint <graouts> | ||||||
Component: | Web Inspector | Assignee: | Antoine Quint <graouts> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | commit-queue, graouts, graouts, joepeck, timothy, webkit-bug-importer | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | 528+ (Nightly build) | ||||||||
Hardware: | All | ||||||||
OS: | All | ||||||||
Attachments: |
|
Description
Antoine Quint
2013-12-13 10:10:09 PST
Created attachment 219172 [details]
Patch
Comment on attachment 219172 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=219172&action=review > Source/WebInspectorUI/UserInterface/CodeMirrorColorEditingController.js:90 > + this._range = new WebInspector.TextRange(this._range.startLine, this._range.startColumn, this._range.endLine, this._range.startColumn + text.length); Shouldn't this take into account any "\n" in text when making the endLine and endColumn? Or just assert no "\n" is allowed in the text and use startLine for endLine. Created attachment 219174 [details]
Patch for landing
(In reply to comment #2) > (From update of attachment 219172 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=219172&action=review > > > Source/WebInspectorUI/UserInterface/CodeMirrorColorEditingController.js:90 > > + this._range = new WebInspector.TextRange(this._range.startLine, this._range.startColumn, this._range.endLine, this._range.startColumn + text.length); > > Shouldn't this take into account any "\n" in text when making the endLine and endColumn? Or just assert no "\n" is allowed in the text and use startLine for endLine. For the record, this was fixed in the commit after discussion on IRC. Comment on attachment 219174 [details] Patch for landing Clearing flags on attachment: 219174 Committed r160552: <http://trac.webkit.org/changeset/160552> All reviewed patches have been landed. Closing bug. Could this have caused: file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/External/CodeMirror/codemirror.js:1446:39: JS ERROR: TypeError: undefined is not a function (evaluating 'marker.find()') file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/Color.js:97:133: JS ERROR: TypeError: undefined is not a function (evaluating 'WebInspector.Color.Nicknames[nickname].concat(1)') No marker.find? (In reply to comment #7) > Could this have caused: > > file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/External/CodeMirror/codemirror.js:1446:39: JS ERROR: TypeError: undefined is not a function (evaluating 'marker.find()') > file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/Color.js:97:133: JS ERROR: TypeError: undefined is not a function (evaluating 'WebInspector.Color.Nicknames[nickname].concat(1)') > > No marker.find? Follow-up fix on: <https://webkit.org/b/125724> Web Inspector: Exception: TypeError: undefined is not a function (evaluating 'marker.find()') (In reply to comment #8) > (In reply to comment #7) > > Could this have caused: > > > > file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/External/CodeMirror/codemirror.js:1446:39: JS ERROR: TypeError: undefined is not a function (evaluating 'marker.find()') > > file:///Volumes/Data/Build/Debug/WebInspectorUI.framework/Resources/Color.js:97:133: JS ERROR: TypeError: undefined is not a function (evaluating 'WebInspector.Color.Nicknames[nickname].concat(1)') > > > > No marker.find? > > Follow-up fix on: > <https://webkit.org/b/125724> Web Inspector: Exception: TypeError: undefined is not a function (evaluating 'marker.find()') There shouldn't be a marker.find(), there's a "range" property on WebInspector.TextMarker. This patch introduced another regression: https://bugs.webkit.org/show_bug.cgi?id=128965, Web Inspector: editing a color in the Styles sidebar using the color picker only works once for a given color. |