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

Unified Diff: Source/core/rendering/style/StyleRareInheritedData.cpp

Issue 639293008: Make CSS resize property non-inherited. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New baselines Created 6 years, 2 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/rendering/style/StyleRareInheritedData.cpp
diff --git a/Source/core/rendering/style/StyleRareInheritedData.cpp b/Source/core/rendering/style/StyleRareInheritedData.cpp
index 798bbf53a194fbad92b594f298e8ab651443ee8a..11d54f38bef0cd9dbdbad5d904857e46f255c1ee 100644
--- a/Source/core/rendering/style/StyleRareInheritedData.cpp
+++ b/Source/core/rendering/style/StyleRareInheritedData.cpp
@@ -73,7 +73,6 @@ StyleRareInheritedData::StyleRareInheritedData()
, wordBreak(RenderStyle::initialWordBreak())
, overflowWrap(RenderStyle::initialOverflowWrap())
, lineBreak(LineBreakAuto)
- , resize(RenderStyle::initialResize())
, userSelect(RenderStyle::initialUserSelect())
, speak(SpeakNormal)
, hyphens(HyphensManual)
@@ -129,7 +128,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
, wordBreak(o.wordBreak)
, overflowWrap(o.overflowWrap)
, lineBreak(o.lineBreak)
- , resize(o.resize)
, userSelect(o.userSelect)
, speak(o.speak)
, hyphens(o.hyphens)
@@ -193,7 +191,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
&& wordBreak == o.wordBreak
&& overflowWrap == o.overflowWrap
&& lineBreak == o.lineBreak
- && resize == o.resize
&& userSelect == o.userSelect
&& speak == o.speak
&& hyphens == o.hyphens
« no previous file with comments | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | Source/core/rendering/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698