| Index: chrome/test/data/webui/settings/reset_page_test.js
|
| diff --git a/chrome/test/data/webui/settings/reset_page_test.js b/chrome/test/data/webui/settings/reset_page_test.js
|
| index 15ed24b7aefa8a3db87d58e93c060156ac09e029..5316a9b6aeb7e6e2c512ad108190dfd09b825054 100644
|
| --- a/chrome/test/data/webui/settings/reset_page_test.js
|
| +++ b/chrome/test/data/webui/settings/reset_page_test.js
|
| @@ -99,12 +99,17 @@ cr.define('settings_reset_page', function() {
|
| var dialog = resetPage.$$('settings-reset-profile-dialog');
|
| assertTrue(!!dialog);
|
|
|
| + var checkbox = dialog.$$('.footer paper-checkbox');
|
| + assertTrue(checkbox.checked);
|
| var showReportedSettingsLink = dialog.$$('.footer a');
|
| assertTrue(!!showReportedSettingsLink);
|
| MockInteractions.tap(showReportedSettingsLink);
|
|
|
| return resetPageBrowserProxy.whenCalled('showReportedSettings').then(
|
| function() {
|
| + // Ensure that the checkbox was not toggled as a result of
|
| + // clicking the link.
|
| + assertTrue(checkbox.checked);
|
| assertFalse(dialog.$.reset.disabled);
|
| assertFalse(dialog.$.resetSpinner.active);
|
| MockInteractions.tap(dialog.$.reset);
|
|
|