| Index: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| index cbd019ecde9092c02031f2f6e85802457d7e33c4..3e86c47489d9828fad5e5956afdf62d54b6a2fdb 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -681,7 +681,7 @@ PassRefPtr<ComputedStyle> StyleResolver::styleForDocument(Document& document)
|
| documentStyle->setRTLOrdering(document.visuallyOrdered() ? VisualOrder : LogicalOrder);
|
| documentStyle->setZoom(frame && !document.printing() ? frame->pageZoomFactor() : 1);
|
| FontDescription documentFontDescription = documentStyle->getFontDescription();
|
| - documentFontDescription.setLocale(document.contentLanguage());
|
| + documentFontDescription.setLocale(LayoutLocale::get(document.contentLanguage()));
|
| documentStyle->setFontDescription(documentFontDescription);
|
| documentStyle->setZIndex(0);
|
| documentStyle->setIsStackingContext(true);
|
|
|