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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js

Issue 2906983002: DevTools: cleanup text input styles (Closed)
Patch Set: ac Created 3 years, 7 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/network/BlockedURLsPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
index 35c0f7343074f1550dde39cf3dca7f500faeb0ad..96082340c58c912111905b2da8cf4a09d86f1059 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
@@ -153,7 +153,7 @@ Network.BlockedURLsPane = class extends UI.VBox {
var editor = new UI.ListWidget.Editor();
var content = editor.contentElement();
var titles = content.createChild('div', 'blocked-url-edit-row');
- titles.createChild('div', 'blocked-url-edit-value').textContent =
+ titles.createChild('div').textContent =
Common.UIString('Text pattern to block matching requests; use * for wildcard');
var fields = content.createChild('div', 'blocked-url-edit-row');
var urlInput = editor.createInput(

Powered by Google App Engine
This is Rietveld 408576698