Changeset 182095 in webkit
- Timestamp:
- Mar 27, 2015, 5:57:53 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r182094 r182095 1 2015-03-27 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Disable editing in Metrics section while it is not working 4 https://bugs.webkit.org/show_bug.cgi?id=143165 5 6 Reviewed by Timothy Hatcher. 7 8 * UserInterface/Views/BoxModelDetailsSectionRow.js: 9 (WebInspector.BoxModelDetailsSectionRow.prototype._updateMetrics.createElement): 10 (WebInspector.BoxModelDetailsSectionRow.prototype._applyUserInput): 11 Disable double click to edit while it is not working. The value setter 12 and add methods no longer exist. 13 1 14 2015-03-27 Joseph Pecoraro <pecoraro@apple.com> 2 15 -
trunk/Source/WebInspectorUI/UserInterface/Views/BoxModelDetailsSectionRow.js
r182040 r182095 118 118 if (shouldRoundValue) 119 119 element.title = value; 120 element.addEventListener("dblclick", this._startEditing.bind(this, element, name, propertyName, style), false); 120 // FIXME: <https://webkit.org/b/143164> Web Inspector: REGRESSION(r179286) Editing Style Metrics Values no longer works 121 // element.addEventListener("dblclick", this._startEditing.bind(this, element, name, propertyName, style), false); 121 122 return element; 122 123 } … … 414 415 415 416 var property = this._nodeStyles.inlineStyle.propertyForName(context.styleProperty); 416 property.value = userInput; 417 property.add(); 417 // FIXME: <https://webkit.org/b/143164> Web Inspector: REGRESSION(r179286) Editing Style Metrics Values no longer works 418 418 } 419 419
Note:
See TracChangeset
for help on using the changeset viewer.