| Index: third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js b/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js
|
| index eb1f4411389a435280a9eb1f78fd016743d4a43a..5e5f177ad278e7cec6d8c0435f3b3605e79df794 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js
|
| @@ -603,7 +603,8 @@ Screencast.ScreencastView = class extends UI.VBox {
|
| this._navigationForward = this._navigationBar.createChild('button', 'forward');
|
| this._navigationForward.disabled = true;
|
| this._navigationReload = this._navigationBar.createChild('button', 'reload');
|
| - this._navigationUrl = this._navigationBar.createChild('input');
|
| + this._navigationUrl = UI.createInput();
|
| + this._navigationBar.appendChild(this._navigationUrl);
|
| this._navigationUrl.type = 'text';
|
| this._navigationProgressBar = new Screencast.ScreencastView.ProgressTracker(
|
| this._resourceTreeModel, this._networkManager, this._navigationBar.createChild('div', 'progress'));
|
|
|