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

Unified Diff: LayoutTests/http/tests/inspector/search/source-frame-search.html

Issue 722713002: DevTools: get rid of getters and setters in StatusBarButton. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | LayoutTests/http/tests/inspector/timeline-test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/search/source-frame-search.html
diff --git a/LayoutTests/http/tests/inspector/search/source-frame-search.html b/LayoutTests/http/tests/inspector/search/source-frame-search.html
index 32989aea18452d547901bac07357f8fa078683d3..fc271462c1381c62e0e376c0bdcc16caee717172 100644
--- a/LayoutTests/http/tests/inspector/search/source-frame-search.html
+++ b/LayoutTests/http/tests/inspector/search/source-frame-search.html
@@ -55,8 +55,8 @@ function test()
var searchableView = WebInspector.panels.sources.sourcesView().searchableView();
searchableView.showSearchField();
- searchableView._caseSensitiveButton.toggled = searchConfig.caseSensitive;
- searchableView._regexButton.toggled = searchConfig.isRegex;
+ searchableView._caseSensitiveButton.setToggled(searchConfig.caseSensitive);
+ searchableView._regexButton.setToggled(searchConfig.isRegex);
searchableView._searchInputElement.value = searchConfig.query;
searchableView._replaceCheckboxElement.checked = true;
searchableView._updateSecondRowVisibility();
« no previous file with comments | « no previous file | LayoutTests/http/tests/inspector/timeline-test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698