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

Unified Diff: Source/core/style/StyleRareNonInheritedData.h

Issue 1251523003: Delete AuthorStyleInfo and move its data into ComputedStyle.RareNonInheritedData. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use html expectation instead Created 5 years, 4 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: Source/core/style/StyleRareNonInheritedData.h
diff --git a/Source/core/style/StyleRareNonInheritedData.h b/Source/core/style/StyleRareNonInheritedData.h
index 35728ef6ba515002fbec47969e70b24ec5c0caec..51be700b2755f3978be4e20ba72cc53efef5c62d 100644
--- a/Source/core/style/StyleRareNonInheritedData.h
+++ b/Source/core/style/StyleRareNonInheritedData.h
@@ -202,6 +202,10 @@ public:
unsigned m_resize : 2; // EResize
unsigned m_hasCompositorProxy : 1;
+ // Style adjustment for appearance is disabled when certain properties are set.
+ unsigned m_hasAuthorBackground : 1; // Whether there is a author-defined background.
+ unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border.
+
private:
StyleRareNonInheritedData();
StyleRareNonInheritedData(const StyleRareNonInheritedData&);

Powered by Google App Engine
This is Rietveld 408576698