| Index: third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
|
| index 58c70a5544f2f9ae7c61bdf43c778ad8a61c5809..8007349cc40189af9c57bcee3364c704660efb17 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
|
| @@ -43,11 +43,11 @@ InspectorTest.createMockTarget = function(id, debuggerModelConstructor, targetTy
|
| WebInspector.Target.call(this, InspectorTest.testTargetManager, name, type, connection, null, callback);
|
| this.consoleModel = new WebInspector.ConsoleModel(this);
|
| this.networkManager = new WebInspector.NetworkManager(this);
|
| + this.runtimeModel = new WebInspector.RuntimeModel(this);
|
| this.resourceTreeModel = new WebInspector.ResourceTreeModel(this);
|
| this.resourceTreeModel._inspectedPageURL = InspectorTest.resourceTreeModel._inspectedPageURL;
|
| this.resourceTreeModel._cachedResourcesProcessed = true;
|
| this.resourceTreeModel._frameAttached("42", 0);
|
| - this.runtimeModel = new WebInspector.RuntimeModel(this);
|
| this.debuggerModel = debuggerModelConstructor ? new debuggerModelConstructor(this) : new WebInspector.DebuggerModel(this);
|
| this._modelByConstructor.set(WebInspector.DebuggerModel, this.debuggerModel);
|
| this.domModel = new WebInspector.DOMModel(this);
|
|
|