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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp

Issue 2622623003: Moved -webkit-rtl-ordering to be generated in ComputedStyleBase. (Closed)
Patch Set: Created 3 years, 11 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
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 4f13cd4efdb191f3b902b28195488b487457cfa4..2cdaa100588158ab758f668e877e0eb3ad68a8e1 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
@@ -548,8 +548,8 @@ PassRefPtr<ComputedStyle> StyleResolver::styleForDocument(Document& document) {
const LocalFrame* frame = document.frame();
RefPtr<ComputedStyle> documentStyle = ComputedStyle::create();
- documentStyle->setRTLOrdering(document.visuallyOrdered() ? EOrder::Visual
- : EOrder::Logical);
+ documentStyle->setRtlOrdering(document.visuallyOrdered() ? EOrder::kVisual
+ : EOrder::kLogical);
documentStyle->setZoom(frame && !document.printing() ? frame->pageZoomFactor()
: 1);
FontDescription documentFontDescription = documentStyle->getFontDescription();
« no previous file with comments | « third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698