| Index: third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-test.js
|
| index 219cfb2dd367f688970adf82979f873a0f690a68..407261149c609e379b2e6e683c8b2958c57be7b9 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/appcache/appcache-test.js
|
| @@ -81,7 +81,7 @@ InspectorTest.dumpApplicationCache = function()
|
| InspectorTest.dumpApplicationCacheTree = function()
|
| {
|
| InspectorTest.addResult("Dumping application cache tree:");
|
| - var applicationCacheTreeElement = UI.panels.resources.applicationCacheListTreeElement;
|
| + var applicationCacheTreeElement = UI.panels.resources._sidebar.applicationCacheListTreeElement;
|
| if (!applicationCacheTreeElement.childCount()) {
|
| InspectorTest.addResult(" (empty)");
|
| return;
|
| @@ -127,7 +127,7 @@ InspectorTest.applicationCacheStatusToString = function(status)
|
| InspectorTest.dumpApplicationCacheModel = function()
|
| {
|
| InspectorTest.addResult("Dumping application cache model:");
|
| - var model = UI.panels.resources._applicationCacheModel;
|
| + var model = UI.panels.resources._sidebar._applicationCacheModel;
|
|
|
| var frameIds = [];
|
| for (var frameId in model._manifestURLsByFrame)
|
| @@ -154,8 +154,8 @@ InspectorTest.dumpApplicationCacheModel = function()
|
|
|
| InspectorTest.waitForFrameManifestURLAndStatus = function(frameId, manifestURL, status, callback)
|
| {
|
| - var frameManifestStatus = UI.panels.resources._applicationCacheModel.frameManifestStatus(frameId);
|
| - var frameManifestURL = UI.panels.resources._applicationCacheModel.frameManifestURL(frameId);
|
| + var frameManifestStatus = UI.panels.resources._sidebar._applicationCacheModel.frameManifestStatus(frameId);
|
| + var frameManifestURL = UI.panels.resources._sidebar._applicationCacheModel.frameManifestURL(frameId);
|
| if (frameManifestStatus === status && frameManifestURL.indexOf(manifestURL) !== -1) {
|
| callback();
|
| return;
|
|
|