Chromium Code Reviews| 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 a29c1cc394709908380ffd419c1f4f54b27eca78..bcd25ca86326bed4fbdc209b5689d573562051c5 100644 |
| --- a/third_party/WebKit/Source/core/css/StyleSheetContents.cpp |
| +++ b/third_party/WebKit/Source/core/css/StyleSheetContents.cpp |
| @@ -72,7 +72,7 @@ StyleSheetContents::StyleSheetContents(StyleRuleImport* ownerRule, const String& |
| } |
| StyleSheetContents::StyleSheetContents(const StyleSheetContents& o) |
| - : m_ownerRule(nullptr) |
| + : m_ownerRule(o.m_ownerRule) |
|
Timothy Loh
2016/01/25 00:40:00
why was this originally nullptr?
nainar
2016/01/25 03:48:24
I wasn't able to track the down the reason using G
|
| , m_originalURL(o.m_originalURL) |
| , m_importRules(o.m_importRules.size()) |
| , m_namespaceRules(o.m_namespaceRules.size()) |