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

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

Issue 2677843002: Change ComputedStyle::setUnique to take bool parameter. (Closed)
Patch Set: Created 3 years, 10 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/StyleAdjuster.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
index a261919d92e7d4b6b4ec7126baf1880c026fc4a0..015eb7ed9f831a9f93762b73c6d62dda53560137 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
@@ -458,7 +458,7 @@ void StyleAdjuster::adjustComputedStyle(ComputedStyle& style,
// share this style.
if (style.hasPseudoStyle(PseudoIdFirstLetter) || style.transitions() ||
style.animations())
- style.setUnique();
+ style.setUnique(true);
adjustStyleForEditing(style);

Powered by Google App Engine
This is Rietveld 408576698