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

Unified Diff: chrome/common/jstemplate_builder.cc

Issue 159026: Fix issue where the i18n template logic was not applied to the document eleme... (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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/jstemplate_builder.cc
===================================================================
--- chrome/common/jstemplate_builder.cc (revision 20623)
+++ chrome/common/jstemplate_builder.cc (working copy)
@@ -108,7 +108,7 @@
void AppendI18nTemplateProcessHtml(std::string* output) {
output->append("<script>");
- output->append("i18nTemplate.process(document.documentElement, ");
+ output->append("i18nTemplate.process(document, ");
output->append("templateData);");
output->append("</script>");
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698