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

Unified Diff: chrome/test/data/webui/options_page_autofill.js

Issue 7501004: Add test to each OptionsPage to open that page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added separate file for each option test. Created 9 years, 5 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: chrome/test/data/webui/options_page_autofill.js
diff --git a/chrome/test/data/webui/options_page_autofill.js b/chrome/test/data/webui/options_page_autofill.js
new file mode 100644
index 0000000000000000000000000000000000000000..ca3ce1832eec074183b33371310adf8f125a0157
--- /dev/null
+++ b/chrome/test/data/webui/options_page_autofill.js
@@ -0,0 +1,24 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * TestFixture for AutofillOptionsPage WebUI testing.
+ * @extends {testing.Test}
+ * @constructor
+ **/
+function AutofillOptionsWebUITest() {}
+
+AutofillOptionsWebUITest.prototype = {
+ __proto__: testing.Test.prototype,
+
+ /**
+ * Browse to the autofill options page & call our PreLoad().
+ **/
+ browsePreload: 'chrome://settings/autofill',
+};
+
+// Test opening the autofill page has correct location, instance, and title.
+TEST_F('AutofillOptionsWebUITest', 'testOpenAutofillPage', function() {
+ assertEquals(this.browsePreload, document.location.href);
+});

Powered by Google App Engine
This is Rietveld 408576698