Changeset 62946 in webkit


Ignore:
Timestamp:
Jul 9, 2010 6:45:47 AM (14 years ago)
Author:
pfeldman@chromium.org
Message:

2010-07-09 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: hide AppCache until implemented.

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

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62945 r62946  
     12010-07-09  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Yury Semikhatsky.
     4
     5        Web Inspector: hide AppCache until implemented.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=41858
     8
     9        * inspector/front-end/StoragePanel.js:
     10        (WebInspector.StoragePanel):
     11        (WebInspector.StoragePanel.prototype.reset):
     12        (WebInspector.StoragePanel.prototype.addApplicationCache):
     13
    1142010-07-09  François Sausset  <sausset@gmail.com>
    215
  • trunk/WebCore/inspector/front-end/StoragePanel.js

    r62647 r62946  
    5050    this.cookieListTreeElement.expand();
    5151
    52     this.applicationCacheListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("APPLICATION CACHE"), {}, true);
    53     this.sidebarTree.appendChild(this.applicationCacheListTreeElement);
    54     this.applicationCacheListTreeElement.expand();
     52    // TODO: uncomment when AppCache is implemented.
     53    // this.applicationCacheListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("APPLICATION CACHE"), {}, true);
     54    // this.sidebarTree.appendChild(this.applicationCacheListTreeElement);
     55    // this.applicationCacheListTreeElement.expand();
    5556
    5657    this.storageViews = document.createElement("div");
     
    109110        this.sessionStorageListTreeElement.removeChildren();
    110111        this.cookieListTreeElement.removeChildren();
    111         this.applicationCacheListTreeElement.removeChildren();
     112        // TODO: uncomment when AppCache is implemented.
     113        // this.applicationCacheListTreeElement.removeChildren();
    112114
    113115        this.storageViews.removeChildren();
     
    147149    addApplicationCache: function(domain)
    148150    {
    149         var applicationCacheTreeElement = new WebInspector.ApplicationCacheSidebarTreeElement(domain);
    150         this.applicationCacheListTreeElement.appendChild(applicationCacheTreeElement);
     151        // TODO: uncomment when AppCache is implemented.
     152        // var applicationCacheTreeElement = new WebInspector.ApplicationCacheSidebarTreeElement(domain);
     153        // this.applicationCacheListTreeElement.appendChild(applicationCacheTreeElement);
    151154    },
    152155
Note: See TracChangeset for help on using the changeset viewer.