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

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

Issue 2902433002: Generates predicates to test in diff functions in ComputedStyle (Closed)
Patch Set: alancutter@'s suggestions Created 3 years, 7 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/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index a04ebdbba8a076b0b4f682e4c1d53dd32492b374..262fbbcc2ebba17662f1c7811034c9e093de439d 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -707,12 +707,6 @@ bool ComputedStyle::DiffNeedsFullLayoutAndPaintInvalidation(
rare_inherited_data_->text_stroke_width_ !=
other.rare_inherited_data_->text_stroke_width_)
return true;
-
- if (!TextShadowDataEquivalent(other))
- return true;
-
- if (!QuotesDataEquivalent(other))
- return true;
}
if (inherited_data_->text_autosizing_multiplier_ !=

Powered by Google App Engine
This is Rietveld 408576698