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

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: 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.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 287f8655c061c6484bab11de137bc25c20e499f3..e7cb95f04c945cffc63405a24778ef41737c3515 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 {
skobes 2016/11/09 03:11:39 capitalize as "textAutosizingFingerprint" (since f
cathiechentx 2016/11/09 12:58:46 Done.
+ return m_styleInheritedData->textAutosizingFingerPrint;
+ }
+ void setTextAutosizingFingerPrint(unsigned);
+
bool selfOrAncestorHasDirAutoAttribute() const {
return m_rareInheritedData->m_selfOrAncestorHasDirAutoAttribute;
}

Powered by Google App Engine
This is Rietveld 408576698