Chromium Code Reviews| Index: chrome/test/data/webui/settings/cr_settings_browsertest.js |
| diff --git a/chrome/test/data/webui/settings/cr_settings_browsertest.js b/chrome/test/data/webui/settings/cr_settings_browsertest.js |
| index 5d17aa0cdd872eb328e16da27a0ca2376fda0392..3e26c0c5d23bb5e9b54fcd5cb6c54818754ef9c1 100644 |
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js |
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js |
| @@ -1308,3 +1308,27 @@ CrSettingsExtensionControlledIndicatorTest.prototype = { |
| TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { |
| mocha.run(); |
| }); |
| + |
| +/** |
| + * Test fixture for the Date and Time page. |
| + * @constructor |
| + * @extends {CrSettingsBrowserTest} |
| + */ |
| +function CrSettingsFocusableIronListItemBehavior() {} |
| + |
| +CrSettingsFocusableIronListItemBehavior.prototype = { |
| + __proto__: CrSettingsBrowserTest.prototype, |
| + |
| + /** @override */ |
| + browsePreload: 'chrome://md-settings/focusable_iron_list_item_behavior.html', |
| + |
| + /** @override */ |
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ |
| + 'focusable_iron_list_item_behavior_test.js', |
| + ]), |
| +}; |
| + |
| +TEST_F('CrSettingsFocusableIronListItemBehavior', |
| + 'FocusableIronListItemBehavior', function() { |
|
Dan Beam
2017/02/22 23:25:46
can you change this to add new information or be l
scottchen
2017/02/23 00:31:50
Done.
|
| + mocha.run(); |
| + }); |