Changeset 242731 in webkit
- Timestamp:
- Mar 11, 2019, 1:05:07 PM (7 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/SpreadsheetStyleProperty.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r242622 r242731 1 2019-03-11 Nikita Vasilyev <nvasilyev@apple.com> 2 3 REGRESSION(r242622): Web Inspector: Fix asserts "Overridden property is missing overridingProperty" 4 https://bugs.webkit.org/show_bug.cgi?id=195515 5 <rdar://problem/48737315> 6 7 Reviewed by Matt Baker. 8 9 * UserInterface/Views/SpreadsheetStyleProperty.js: 10 (WI.SpreadsheetStyleProperty.prototype.updateStatus): 11 1 12 2019-03-07 Nikita Vasilyev <nvasilyev@apple.com> 2 13 -
trunk/Source/WebInspectorUI/UserInterface/Views/SpreadsheetStyleProperty.js
r242622 r242731 263 263 264 264 if (this._property.overridden) { 265 if (!this._jumpToEffectivePropertyButton && this._delegate && this._delegate.spreadsheetStylePropertySelectByProperty ) {265 if (!this._jumpToEffectivePropertyButton && this._delegate && this._delegate.spreadsheetStylePropertySelectByProperty && WI.settings.experimentalEnableStylesJumpToEffective.value) { 266 266 console.assert(this._property.overridingProperty, `Overridden property is missing overridingProperty: ${this._property.formattedText}`); 267 267 if (this._property.overridingProperty) {
Note:
See TracChangeset
for help on using the changeset viewer.