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

Unified Diff: chrome/browser/browser_encoding_browsertest.cc

Issue 25769005: Canonical encoding name : windows-949 => EUC-KR (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 2 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 | « no previous file | chrome/browser/character_encoding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_encoding_browsertest.cc
===================================================================
--- chrome/browser/browser_encoding_browsertest.cc (revision 227293)
+++ chrome/browser/browser_encoding_browsertest.cc (working copy)
@@ -53,8 +53,12 @@
{ "UTF-8.html", "UTF-8" },
{ "UTF-16LE.html", "UTF-16LE" },
{ "windows-874.html", "windows-874" },
- // http://crbug.com/95963
- // { "windows-949.html", "windows-949" },
+#if 0
+ // TODO(jungshik): Temporarily disable this. Reenable it once
+ // Blink rolls to include https://codereview.chromium.org/25870005/
+ // (it's reverted so that it has to be landed again).
+ { "EUC-KR.html", "EUC-KR" },
+#endif
{ "windows-1250.html", "windows-1250" },
{ "windows-1251.html", "windows-1251" },
{ "windows-1252.html", "windows-1252" },
@@ -265,9 +269,14 @@
{ "UTF-8_with_no_encoding_specified.html",
"expected_UTF-8_saved_from_no_encoding_specified.html",
"UTF-8" },
- { "windows-949_with_no_encoding_specified.html",
- "expected_windows-949_saved_from_no_encoding_specified.html",
- "windows-949-2000" },
+#if 0
+ // TODO(jungshik): Temporarily disable this. Reenable it once
+ // Blink rolls to include https://codereview.chromium.org/25870005/
+ // (it's reverted so that it has to be landed again).
+ { "EUC-KR_with_no_encoding_specified.html",
+ "expected_EUC-KR_saved_from_no_encoding_specified.html",
+ "EUC-KR" },
+#endif
{ "windows-1251_with_no_encoding_specified.html",
"expected_windows-1251_saved_from_no_encoding_specified.html",
"windows-1251" },
« no previous file with comments | « no previous file | chrome/browser/character_encoding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698