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

Side by Side Diff: chrome/test/data/webui/settings.js

Issue 7237030: Added options browser_tests using the generator and js handler framework. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indent & commenting capitalization. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Utility functions for settings WebUI page.
6 function refreshPage() {
7 window.location.reload();
8 }
9
10 function openUnderTheHood() {
11 var item = $('advancedPageNav');
12 assertTrue(item != null);
13 assertTrue(item.onclick != null);
14 item.onclick();
15 }
16
17 // Tests.
18 function testSetBooleanPrefTriggers() {
19 // TODO(dtseng): make generic to click all buttons.
20 var showHomeButton = $('toolbarShowHomeButton');
21 assertTrue(showHomeButton != null);
22 showHomeButton.click();
23 showHomeButton.blur();
24 }
25
26 function testPageIsUnderTheHood() {
27 var pageInstance = AdvancedOptions.getInstance();
28 var topPage = OptionsPage.getTopmostVisiblePage();
29 var expectedTitle = pageInstance.title;
30 var actualTitle = document.title;
31 assertEquals("chrome://settings/advanced", document.location.href);
32 assertEquals(expectedTitle, actualTitle);
33 assertEquals(pageInstance, topPage);
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698