Bug 146121 - REGRESSION (r172975): navigator.language unable to tell region for Traditional Chinese users
Summary: REGRESSION (r172975): navigator.language unable to tell region for Traditiona...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Alexey Proskuryakov
URL:
Keywords: InRadar, Regression
Depends on:
Blocks:
 
Reported: 2015-06-18 12:57 PDT by Alexey Proskuryakov
Modified: 2015-06-22 10:24 PDT (History)
5 users (show)

See Also:


Attachments
proposed fix (13.91 KB, patch)
2015-06-18 14:40 PDT, Alexey Proskuryakov
no flags Details | Formatted Diff | Diff
proposed fix (13.90 KB, patch)
2015-06-18 23:31 PDT, Alexey Proskuryakov
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexey Proskuryakov 2015-06-18 12:57:34 PDT
navigator.language now returns "zh-hant" when system language is set to Chinese (Traditional, Hong Kong) or to Chinese (Traditional, Taiwan). This breaks iCloud, which now displays a Simplified Chinese UI to users with these primary languages.

We used to return "zh-tw" for both these languages, which was wrong, but didn't cause any known problems in practice.

rdar://problem/21395180
Comment 1 Alexey Proskuryakov 2015-06-18 14:40:02 PDT
Created attachment 255135 [details]
proposed fix
Comment 2 WebKit Commit Bot 2015-06-18 14:43:17 PDT
Attachment 255135 [details] did not pass style-queue:


ERROR: Tools/TestWebKitAPI/Tests/mac/NavigatorLanguage.mm:116:  Place brace on its own line for function definitions.  [whitespace/braces] [4]
ERROR: Tools/TestWebKitAPI/Tests/mac/NavigatorLanguage.mm:119:  Place brace on its own line for function definitions.  [whitespace/braces] [4]
ERROR: Source/WebCore/platform/spi/cf/CFBundleSPI.h:41:  The parameter name "stringEncoding" adds no information, so it should be removed.  [readability/parameter_name] [5]
ERROR: Source/WebCore/platform/spi/cf/CFBundleSPI.h:42:  The parameter name "stringEncoding" adds no information, so it should be removed.  [readability/parameter_name] [5]
Total errors found: 4 in 6 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 Alexey Proskuryakov 2015-06-18 23:31:58 PDT
Created attachment 255178 [details]
proposed fix

With a build fix.
Comment 4 WebKit Commit Bot 2015-06-18 23:34:10 PDT
Attachment 255178 [details] did not pass style-queue:


ERROR: Tools/TestWebKitAPI/Tests/mac/NavigatorLanguage.mm:116:  Place brace on its own line for function definitions.  [whitespace/braces] [4]
ERROR: Tools/TestWebKitAPI/Tests/mac/NavigatorLanguage.mm:119:  Place brace on its own line for function definitions.  [whitespace/braces] [4]
ERROR: Source/WebCore/platform/spi/cf/CFBundleSPI.h:41:  The parameter name "stringEncoding" adds no information, so it should be removed.  [readability/parameter_name] [5]
ERROR: Source/WebCore/platform/spi/cf/CFBundleSPI.h:42:  The parameter name "stringEncoding" adds no information, so it should be removed.  [readability/parameter_name] [5]
Total errors found: 4 in 6 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 5 Darin Adler 2015-06-19 10:46:58 PDT
Comment on attachment 255178 [details]
proposed fix

View in context: https://bugs.webkit.org/attachment.cgi?id=255178&action=review

> Source/WebCore/ChangeLog:9
> +        Revert to previous behavior, which is wring in many ways, but not as wrong as the new one.

Typo here: "wring".

> Source/WebCore/platform/mac/Language.mm:91
> +    // FIXME: This transformation is very wrong:
> +    // 1. There is no reason why CFBundle localization names would be at all related to language names as used on the Web.
> +    // 2. Script Manager codes cannot represent all languages that are now supported by the platform, so the conversion is lossy.
> +    // 3. This should probably match what is sent by the network layer as Accept-Language, but currently, that's implemented separately.

A problem with this comment is that it says what’s wrong with the code below, but nothing about what’s right about it. I think it’s useful to say why this is a good choice for now (if it is) in the comment, also, not just what’s wrong.

After all, the whole point of this current patch is to switch back to this! So there must be some value in it.

> Source/WebCore/platform/spi/cf/CFBundleSPI.h:40
> +// FIXME: Stop using these, as Script Manager codes cannot reperesent all supported languages.

Typo in the word represent.

I suggest putting this kind of comment at the call site, not in the SPI.h header.
Comment 6 Alexey Proskuryakov 2015-06-21 21:30:37 PDT
Committed http://trac.webkit.org/r185816

> A problem with this comment is that it says what’s wrong with the code
> below, but nothing about what’s right about it. I think it’s useful to say
> why this is a good choice for now (if it is) in the comment, also, not just
> what’s wrong.

Unsure what good to say here. I can see how it is surprising to see a comment with so many downsides in a patch, however I don't see a lasting value for such an explanation in code. We don't normally have anything like that near FIXMEs.

Instead, the regression test would catch potential future mistakes. I think that adding a way to test navigator.language is the more important part of this patch.

Addressed the other suggestions when landing.
Comment 7 Darin Adler 2015-06-22 09:55:54 PDT
(In reply to comment #6)
> Committed http://trac.webkit.org/r185816
> 
> > A problem with this comment is that it says what’s wrong with the code
> > below, but nothing about what’s right about it. I think it’s useful to say
> > why this is a good choice for now (if it is) in the comment, also, not just
> > what’s wrong.
> 
> Unsure what good to say here.

My request here was to add the kind of comment that would prevent a future programmer from repeating the same mistake we just made, again. I think that would be straightforward.
Comment 8 Darin Adler 2015-06-22 10:24:40 PDT
I suppose it’s the test that prevents the future mistake.