| Index: Source/core/rendering/style/StyleRareInheritedData.cpp
 | 
| diff --git a/Source/core/rendering/style/StyleRareInheritedData.cpp b/Source/core/rendering/style/StyleRareInheritedData.cpp
 | 
| index 0f31382f83f9c054cb3055c209bb5548d943d492..bae67dad2f623a85fc5e3cb4cdb573beccb994bc 100644
 | 
| --- a/Source/core/rendering/style/StyleRareInheritedData.cpp
 | 
| +++ b/Source/core/rendering/style/StyleRareInheritedData.cpp
 | 
| @@ -71,7 +71,6 @@ StyleRareInheritedData::StyleRareInheritedData()
 | 
|      , lineBreak(LineBreakAuto)
 | 
|      , resize(RenderStyle::initialResize())
 | 
|      , userSelect(RenderStyle::initialUserSelect())
 | 
| -    , colorSpace(ColorSpaceDeviceRGB)
 | 
|      , speak(SpeakNormal)
 | 
|      , hyphens(HyphensManual)
 | 
|      , textEmphasisFill(TextEmphasisFillFilled)
 | 
| @@ -129,7 +128,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
 | 
|      , lineBreak(o.lineBreak)
 | 
|      , resize(o.resize)
 | 
|      , userSelect(o.userSelect)
 | 
| -    , colorSpace(o.colorSpace)
 | 
|      , speak(o.speak)
 | 
|      , hyphens(o.hyphens)
 | 
|      , textEmphasisFill(o.textEmphasisFill)
 | 
| @@ -206,7 +204,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
 | 
|  #endif
 | 
|          && resize == o.resize
 | 
|          && userSelect == o.userSelect
 | 
| -        && colorSpace == o.colorSpace
 | 
|          && speak == o.speak
 | 
|          && hyphens == o.hyphens
 | 
|          && hyphenationLimitBefore == o.hyphenationLimitBefore
 | 
| 
 |