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

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

Issue 2902433002: Generates predicates to test in diff functions in ComputedStyle (Closed)
Patch Set: 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 9a4c5c3894c442469d0000f6d5287b2d13cf790e..43ce099f501cfc4eb9f94de0098eb7ccc1a9646b 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -709,12 +709,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