diff --git a/content/svg/content/src/nsSVGFeatures.cpp b/content/svg/content/src/nsSVGFeatures.cpp index 4a2b5d2b276..742e8b65498 100644 --- a/content/svg/content/src/nsSVGFeatures.cpp +++ b/content/svg/content/src/nsSVGFeatures.cpp @@ -223,9 +223,11 @@ nsSVGFeatures::PassesConditionalProcessingTests(nsIContent *aContent, // Get our language preferences if (!acceptLangs.IsEmpty()) { + printf("Bug 652050 diagnostic: intl.accept_languages is nonempty.\n"); return MatchesLanguagePreferences(value, acceptLangs); } else { // For now, evaluate to true. + printf("Bug 652050 diagnostic: intl.accept_languages is EMPTY!\n"); NS_WARNING("no default language specified for systemLanguage conditional test"); return !value.IsEmpty(); }