[Webkit-unassigned] [Bug 109434] New: Web Inspector: Colorpicker not saving values

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 11 07:17:18 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=109434

           Summary: Web Inspector: Colorpicker not saving values
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: briangrinstead at gmail.com
                CC: keishi at webkit.org, pmuellr at yahoo.com,
                    pfeldman at chromium.org, yurys at chromium.org,
                    apavlov at chromium.org, loislo at chromium.org,
                    vsevik at chromium.org,
                    web-inspector-bugs at googlegroups.com


When working on another case (https://bugs.webkit.org/show_bug.cgi?id=108852) I noticed that the colorpicker is no longer saving values.  If you click on the color swatch and open up the colorpicker, it will let you change the color in the popup, but the value never gets saved.  This is caused by the following line:

Source/WebCore/inspector/front-end/StylesSidebarPane.js

-                var scrollerElement = hasSpectrum ? self._parentPane._computedStylePane.element.parentElement : null;

This fixes it:

+                var scrollerElement = hasSpectrum ? self._parentPane._computedStylePane.bodyElement : null;

I'm working on a patch for this.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list