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/27 00:56:45
what doesn't work if you don't change this?
nainar
2016/01/27 07:50:42
There is no difference with respect to my code cha
alancutter (OOO until 2018)
2016/01/27 23:34:35
Double check that it still works in a full chrome
|
| , m_originalURL(o.m_originalURL) |
| , m_importRules(o.m_importRules.size()) |
| , m_namespaceRules(o.m_namespaceRules.size()) |