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

Unified Diff: third_party/WebKit/Source/core/css/StyleSheetContents.cpp

Issue 1585383003: Add deprecation message for -webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: 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)
, m_originalURL(o.m_originalURL)
, m_importRules(o.m_importRules.size())
, m_namespaceRules(o.m_namespaceRules.size())

Powered by Google App Engine
This is Rietveld 408576698