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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html

Issue 2545983002: DevTools: Use TextPrompt for FilterBar instead of input element (Closed)
Patch Set: Use textWithCurrentSuggestion Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
index 71805962693c3dc39bdfe93fc56f105008160c23..2dba1356fa5aadc96ec87c954e586e50d936b270 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-filters.html
@@ -90,9 +90,8 @@ function test()
*/
function setNetworkLogFilter(value, isRegex)
{
- UI.panels.network._networkLogView._textFilterUI._filterInputElement.value = value;
UI.panels.network._networkLogView._textFilterUI._regexCheckBox.checked = isRegex;
- UI.panels.network._networkLogView._textFilterUI._valueChanged();
+ UI.panels.network._networkLogView._textFilterUI.setValue(value);
UI.panels.network._networkLogView._filterChanged(null); // event not used in this method, so passing null
}
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/FilterSuggestionBuilder.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698