[Webkit-unassigned] [Bug 94647] New: Web Inspector: [regression] Settings panel fails to open

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 21 16:39:19 PDT 2012


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

           Summary: Web Inspector: [regression] Settings panel fails to
                    open
           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: johnjbarton at chromium.org
                CC: timothy at apple.com, rik at webkit.org, keishi at webkit.org,
                    pmuellr at yahoo.com, joepeck at webkit.org,
                    pfeldman at chromium.org, yurys at chromium.org,
                    bweinstein at apple.com, apavlov at chromium.org,
                    loislo at chromium.org


After
Bug 94416 - Web Inspector: load scripts panel lazily
the Settings fails to open unless the user happens to open the Sources panel first.

SettingScreen.js uses WebInspector.settings.searchInContentScripts

    p.appendChild(this._createCheckboxSetting(WebInspector.UIString("Search in content scripts"), WebInspector.settings.searchInContentScripts));

But the value is not define until ScriptsPanel.js imports ScriptsSearchScope.js

Source/WebCore/inspector/front-end/ScriptsPanel.js:importScript("ScriptsSearchScope.js");

which creates the setting:

WebInspector.settings.searchInContentScripts = WebInspector.settings.createSetting("searchInContentScripts", false);

-- 
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