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

Unified Diff: chrome/browser/download/save_page_uitest.cc

Issue 155095: Make default extension for downloading html "html" rather than "htm" on non-w... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/browser/download/save_package_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/save_page_uitest.cc
===================================================================
--- chrome/browser/download/save_page_uitest.cc (revision 19956)
+++ chrome/browser/download/save_page_uitest.cc (working copy)
@@ -28,7 +28,12 @@
const char* const kTestDir = "save_page";
-const char* const kAppendedExtension = ".htm";
+const char* const kAppendedExtension =
+#if defined(OS_WIN)
+ ".htm";
+#else
+ ".html";
+#endif
class SavePageTest : public UITest {
protected:
« no previous file with comments | « chrome/browser/download/save_package_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698