| Index: third_party/WebKit/Source/core/css/StyleSheetContents.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/css/StyleSheetContents.cpp b/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
 | 
| index 6d642af4888d5b79bc5cac7c863150036f994e5a..6740a6bb11b80df48d1284216d91c6f00fef7b11 100644
 | 
| --- a/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
 | 
| +++ b/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
 | 
| @@ -66,6 +66,7 @@ StyleSheetContents::StyleSheetContents(StyleRuleImport* ownerRule,
 | 
|        m_didLoadErrorOccur(false),
 | 
|        m_isMutable(false),
 | 
|        m_hasFontFaceRule(false),
 | 
| +      m_hasViewportRule(false),
 | 
|        m_hasMediaQueries(false),
 | 
|        m_hasSingleOwnerDocument(true),
 | 
|        m_isUsedFromTextCache(false),
 | 
| @@ -83,6 +84,7 @@ StyleSheetContents::StyleSheetContents(const StyleSheetContents& o)
 | 
|        m_didLoadErrorOccur(false),
 | 
|        m_isMutable(false),
 | 
|        m_hasFontFaceRule(o.m_hasFontFaceRule),
 | 
| +      m_hasViewportRule(o.m_hasViewportRule),
 | 
|        m_hasMediaQueries(o.m_hasMediaQueries),
 | 
|        m_hasSingleOwnerDocument(true),
 | 
|        m_isUsedFromTextCache(false),
 | 
| 
 |