Bug 47933

Summary: navigator.language doesn't work in WebKit2
Product: WebKit Reporter: Alexey Proskuryakov <ap>
Component: WebKit2Assignee: Alexey Proskuryakov <ap>
Status: RESOLVED FIXED    
Severity: Normal Keywords: InRadar
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
proposed patch andersca: review+

Description Alexey Proskuryakov 2010-10-19 14:47:58 PDT
It should!
Comment 1 Alexey Proskuryakov 2010-10-19 14:49:28 PDT
Mac is somewhat special in that there is a way to override language per application (or even per an instance of an application). This means that we should only be looking at the language in UI process.
Comment 2 Alexey Proskuryakov 2010-10-19 14:49:42 PDT
<rdar://problem/8494337>
Comment 3 Alexey Proskuryakov 2010-10-19 15:15:48 PDT
Created attachment 71208 [details]
proposed patch
Comment 4 Anders Carlsson 2010-10-19 15:18:56 PDT
Comment on attachment 71208 [details]
proposed patch

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

> WebCore/platform/mac/Language.mm:95
> +            preferredLanguageCode = [@"en" retain];

No need to retain a constant string.
Comment 5 Alexey Proskuryakov 2010-10-19 15:29:22 PDT
Committed <http://trac.webkit.org/changeset/70095>.