Source/WebInspectorUI/ChangeLog

 12015-04-08 Tobias Reiss <tobi+webkit@basecode.de>
 2
 3 Web Inspector: Regression: Showing of color swatches no longer works in Details Sidebar
 4 https://bugs.webkit.org/show_bug.cgi?id=143539
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Fix a regression where due to an ESLint error the whole line instead of just
 9 the variable declaration was removed.
 10
 11 * UserInterface/Views/CSSStyleDeclarationTextEditor.js:
 12 (WebInspector.CSSStyleDeclarationTextEditor.prototype._createColorSwatches.update):
 13 (WebInspector.CSSStyleDeclarationTextEditor.prototype._createColorSwatches):
 14
1152015-04-07 Joseph Pecoraro <pecoraro@apple.com>
216
317 Web Inspector: ES6: Show Symbol properties on Objects

Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js

@@WebInspector.CSSStyleDeclarationTextEditor = class CSSStyleDeclarationTextEditor
393393 swatchElement.appendChild(swatchInnerElement);
394394
395395 var codeMirrorTextMarker = marker.codeMirrorTextMarker;
 396 this._codeMirror.setUniqueBookmark(codeMirrorTextMarker.find().from, swatchElement);
396397
397398 swatchInnerElement.__colorTextMarker = codeMirrorTextMarker;
398399 swatchInnerElement.__color = color;