OLD | NEW |
| (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 } | |
OLD | NEW |