summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-15 07:10:09 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-15 07:10:09 +0000
commit14133892b62d17bd5a53e021a4054b19900fa13d (patch)
tree4b631479c1c650419005247df945255ba9c0fdaf /chrome
parentf78d1dfc8d92a6667a355e90da7f2f100c89b832 (diff)
downloadchromium_src-14133892b62d17bd5a53e021a4054b19900fa13d.zip
chromium_src-14133892b62d17bd5a53e021a4054b19900fa13d.tar.gz
chromium_src-14133892b62d17bd5a53e021a4054b19900fa13d.tar.bz2
[Sync] Fix pyauto test broken by 71435
71435 caused SpecialTabsTest.testSpecialURLTabs to fail, since that was checking the title for about:sync. Added more tests for about:sync-internals and chrome://sync-internals. BUG=69733 TEST=SpecialTabsTest TBR=nirnimesh git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71549 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/resources/sync_internals/sync_index.html3
-rw-r--r--chrome/test/functional/special_tabs.py4
2 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/resources/sync_internals/sync_index.html b/chrome/browser/resources/sync_internals/sync_index.html
index 212a7bf..26ed19e 100644
--- a/chrome/browser/resources/sync_internals/sync_index.html
+++ b/chrome/browser/resources/sync_internals/sync_index.html
@@ -1,6 +1,9 @@
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;">
<head>
+<!-- If you change the title, make sure you also update
+chrome/test/functional/special_tabs.py. -->
+<title>Sync Internals</title>
<script>
function onLoad() {
chrome.send('getAboutInfo');
diff --git a/chrome/test/functional/special_tabs.py b/chrome/test/functional/special_tabs.py
index cdf5fd4..f0569ee 100644
--- a/chrome/test/functional/special_tabs.py
+++ b/chrome/test/functional/special_tabs.py
@@ -27,12 +27,14 @@ class SpecialTabsTest(pyauto.PyUITest):
'about:dns': 'About DNS',
'about:histograms': 'About Histograms',
'about:plugins': 'Plug-ins',
- 'about:sync': 'About Sync',
+ 'about:sync': 'Sync Internals',
+ 'about:sync-internals': 'Sync Internals',
'about:version': 'About Version',
'chrome://downloads': 'Downloads',
'chrome://extensions': 'Extensions',
'chrome://history': 'History',
'chrome://newtab': 'New Tab',
+ 'chrome://sync-internals': 'Sync Internals',
}
def _VerifyAppCacheInternals(self):