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

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

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: 1. change 'FingerPrint' to 'Fingerprint' 2. remove const from BlockSet 3. change 'textAutosizingNew… 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.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 287f8655c061c6484bab11de137bc25c20e499f3..2c56aca6f8999da096d54ac29c8f83fb1766fe55 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -2839,6 +2839,11 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
}
void setTextAutosizingMultiplier(float);
+ unsigned textAutosizingFingerprint() const {
+ return m_styleInheritedData->textAutosizingFingerprint;
+ }
+ void setTextAutosizingFingerprint(unsigned);
+
bool selfOrAncestorHasDirAutoAttribute() const {
return m_rareInheritedData->m_selfOrAncestorHasDirAutoAttribute;
}

Powered by Google App Engine
This is Rietveld 408576698