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

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

Issue 2299213003: Fix the inconsistent problem while the content of textNodes is changed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add layout test cases and fix format issues Created 4 years, 1 month 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 935bc431515c0bc859e42937d60581a679ff7a8a..9a8d2b47ed1589c8a8d3a0302e43a0d549107588 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -1916,6 +1916,10 @@ void ComputedStyle::setTextAutosizingMultiplier(float multiplier) {
font().update(currentFontSelector);
}
+void ComputedStyle::setTextAutosizingFingerPrint(unsigned fingerPrint) {
+ SET_VAR(m_styleInheritedData, textAutosizingFingerPrint, fingerPrint);
+}
+
void ComputedStyle::addAppliedTextDecoration(
const AppliedTextDecoration& decoration) {
RefPtr<AppliedTextDecorationList>& list =

Powered by Google App Engine
This is Rietveld 408576698