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

Unified Diff: Source/core/html/imports/LinkImport.cpp

Issue 331763002: HTML Imports: styles in removed imports should be applied when it comes back (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/html/imports/LinkImport.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/LinkImport.cpp
diff --git a/Source/core/html/imports/LinkImport.cpp b/Source/core/html/imports/LinkImport.cpp
index bc27571b6073ac47d2844a15cb4405cf3ffac848..0f5a98402111834c736797a14f2553fc1bdad735 100644
--- a/Source/core/html/imports/LinkImport.cpp
+++ b/Source/core/html/imports/LinkImport.cpp
@@ -134,6 +134,12 @@ bool LinkImport::hasLoaded() const
return m_child && m_child->isDone() && !m_child->loader()->hasError();
}
+void LinkImport::ownerInserted()
+{
+ if (m_child)
+ m_child->ownerInserted();
+}
+
void LinkImport::trace(Visitor* visitor)
{
visitor->trace(m_child);
« no previous file with comments | « Source/core/html/imports/LinkImport.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698