Changeset 139994 in webkit


Ignore:
Timestamp:
Jan 17, 2013 10:40:51 AM (11 years ago)
Author:
apavlov@chromium.org
Message:

Web Inspector: [Spectrum] Color picker in CSS editor does not update textual color value
https://bugs.webkit.org/show_bug.cgi?id=107110

Reviewed by Vsevolod Vlasov.

The Spectrum picker was never told to update the textual color upon user-initiated color changes.

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylePropertyTreeElement.prototype.updateTitle.):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139991 r139994  
     12013-01-17  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: [Spectrum] Color picker in CSS editor does not update textual color value
     4        https://bugs.webkit.org/show_bug.cgi?id=107110
     5
     6        Reviewed by Vsevolod Vlasov.
     7
     8        The Spectrum picker was never told to update the textual color upon user-initiated color changes.
     9
     10        * inspector/front-end/StylesSidebarPane.js:
     11        (WebInspector.StylePropertyTreeElement.prototype.updateTitle.):
     12
    1132013-01-17  Jae Hyun Park  <jae.park@company100.net>
    214
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r139607 r139994  
    17691769                    color = e.data;
    17701770                    var colorString = color.toString();
     1771                    spectrum.displayText = colorString;
    17711772                    colorValueElement.textContent = colorString;
    17721773                    colorSwatch.setColorString(colorString);
Note: See TracChangeset for help on using the changeset viewer.