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

Side by Side Diff: chrome/browser/dom_ui/new_tab_ui_uitest.cc

Issue 1695022: NTP - Refactor the most visited code to uncouple it from the rest of the NTP.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/test/ui/ui_test.h" 5 #include "chrome/test/ui/ui_test.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "chrome/app/chrome_dll_resource.h" 8 #include "chrome/app/chrome_dll_resource.h"
9 #include "chrome/browser/dom_ui/new_tab_ui.h" 9 #include "chrome/browser/dom_ui/new_tab_ui.h"
10 #include "chrome/browser/json_pref_store.h" 10 #include "chrome/browser/json_pref_store.h"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 L")", 140 L")",
141 &tip_text_content)); 141 &tip_text_content));
142 ASSERT_EQ(L"", tip_text_content); 142 ASSERT_EQ(L"", tip_text_content);
143 143
144 // Make sure that the notification is visible 144 // Make sure that the notification is visible
145 bool has_class; 145 bool has_class;
146 ASSERT_TRUE(tab->ExecuteAndExtractBool(L"", 146 ASSERT_TRUE(tab->ExecuteAndExtractBool(L"",
147 L"window.domAutomationController.send(" 147 L"window.domAutomationController.send("
148 L"(function() {" 148 L"(function() {"
149 L" var el = document.querySelector('#notification');" 149 L" var el = document.querySelector('#notification');"
150 L" return hasClass(el, 'show');" 150 L" return el.classList.contains('show');"
151 L"})()" 151 L"})()"
152 L")", 152 L")",
153 &has_class)); 153 &has_class));
154 ASSERT_TRUE(has_class); 154 ASSERT_TRUE(has_class);
155 155
156 bool is_home_page; 156 bool is_home_page;
157 ASSERT_TRUE(browser->GetBooleanPreference(prefs::kHomePageIsNewTabPage, 157 ASSERT_TRUE(browser->GetBooleanPreference(prefs::kHomePageIsNewTabPage,
158 &is_home_page)); 158 &is_home_page));
159 ASSERT_TRUE(is_home_page); 159 ASSERT_TRUE(is_home_page);
160 } 160 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698