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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2627563002: Generated unicode-bidi 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 133d0b54ea9a5dcbee699b4c54ca474d9bcbf2a5..76f112d54f9d36dcf59ccea7b564b2e321c3c2bd 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -375,7 +375,6 @@ void ComputedStyle::copyNonInheritedFromCached(const ComputedStyle& other) {
m_nonInheritedData.m_clear = other.m_nonInheritedData.m_clear;
m_nonInheritedData.m_position = other.m_nonInheritedData.m_position;
m_nonInheritedData.m_tableLayout = other.m_nonInheritedData.m_tableLayout;
- m_nonInheritedData.m_unicodeBidi = other.m_nonInheritedData.m_unicodeBidi;
m_nonInheritedData.m_hasViewportUnits =
other.m_nonInheritedData.m_hasViewportUnits;
m_nonInheritedData.m_breakBefore = other.m_nonInheritedData.m_breakBefore;
@@ -819,8 +818,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
if (m_nonInheritedData.m_overflowX != other.m_nonInheritedData.m_overflowX ||
m_nonInheritedData.m_overflowY != other.m_nonInheritedData.m_overflowY ||
m_nonInheritedData.m_clear != other.m_nonInheritedData.m_clear ||
- m_nonInheritedData.m_unicodeBidi !=
- other.m_nonInheritedData.m_unicodeBidi ||
+ getUnicodeBidi() != other.getUnicodeBidi() ||
floating() != other.floating() ||
m_nonInheritedData.m_originalDisplay !=
other.m_nonInheritedData.m_originalDisplay)
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698