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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineFlowBox.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/layout/line/InlineFlowBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
index 29a8fad28d49cf0263fb53a9a2d050f8e6f03120..19bf94a71263d6134c865cd25cde5e30b89de5b6 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
+++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
@@ -1577,7 +1577,7 @@ void InlineFlowBox::collectLeafBoxesInLogicalOrder(
leafBoxesInLogicalOrder.push_back(leaf);
}
- if (getLineLayoutItem().style()->rtlOrdering() == EOrder::Visual)
+ if (getLineLayoutItem().style()->rtlOrdering() == EOrder::kVisual)
return;
// Reverse of reordering of the line (L2 according to Bidi spec):

Powered by Google App Engine
This is Rietveld 408576698