Changeset 47724 in webkit


Ignore:
Timestamp:
Aug 24, 2009 1:20:44 PM (15 years ago)
Author:
pfeldman@chromium.org
Message:

2009-08-24 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

WebInspector: Do expand local scope when hitting the break

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

  • inspector/front-end/ScopeChainSidebarPane.js: (WebInspector.ScopeChainSidebarPane.prototype.update):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r47722 r47724  
     12009-08-24  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        WebInspector: Do expand local scope when hitting the break
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=28678
     8
     9        * inspector/front-end/ScopeChainSidebarPane.js:
     10        (WebInspector.ScopeChainSidebarPane.prototype.update):
     11
    1122009-08-24  Ada Chan  <adachan@apple.com>
    213
  • trunk/WebCore/inspector/front-end/ScopeChainSidebarPane.js

    r47717 r47724  
    5353            var subtitle = scopeObjectProxy.description;
    5454            var emptyPlaceholder = null;
    55             var localScope = false;
    5655            var extraProperties = null;
    5756
     
    8180            section.pane = this;
    8281
    83             if (!foundLocalScope || localScope)
     82            if (!foundLocalScope || scopeObjectProxy.isLocal)
    8483                section.expanded = true;
    8584
Note: See TracChangeset for help on using the changeset viewer.