| Index: Source/devtools/front_end/inspector.js
|
| diff --git a/Source/devtools/front_end/inspector.js b/Source/devtools/front_end/inspector.js
|
| index 5eaee481dd743b18a283925559dda0e67f1aad75..36eaaaa5d18f054812c30eb332dbbc9f599dc5e0 100644
|
| --- a/Source/devtools/front_end/inspector.js
|
| +++ b/Source/devtools/front_end/inspector.js
|
| @@ -586,6 +586,17 @@ WebInspector._doLoadedDoneWithCapabilities = function()
|
| if (WebInspector.experimentsSettings.tethering.isEnabled())
|
| this._setupTethering();
|
|
|
| + if (WebInspector.experimentsSettings.screencast.isEnabled()) {
|
| + var splitView = new WebInspector.SplitView(true, "screencastSplitView");
|
| + splitView.markAsRoot();
|
| + splitView.setSecondIsSidebar(false);
|
| + splitView.show(document.body);
|
| +
|
| + var screencastView = new WebInspector.ScreencastView();
|
| + screencastView.show(splitView.firstElement());
|
| + splitView.secondElement().appendChild(document.getElementById("root"));
|
| + }
|
| +
|
| WebInspector.notifications.dispatchEventToListeners(WebInspector.Events.InspectorLoaded);
|
| }
|
|
|
|
|