Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Unified Diff: third_party/WebKit/Source/devtools/front_end/screencast/ScreencastView.js

Issue 2875193002: DevTools: update text inputs to new style (Closed)
Patch Set: ac Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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'));

Powered by Google App Engine
This is Rietveld 408576698