Index: Source/core/html/HTMLEmbedElement.cpp |
diff --git a/Source/core/html/HTMLEmbedElement.cpp b/Source/core/html/HTMLEmbedElement.cpp |
index 0a9cf575e3513864e2081891aca2b891f125de94..7514159e3d6d7496fa641de4e7c6d001c97333e5 100644 |
--- a/Source/core/html/HTMLEmbedElement.cpp |
+++ b/Source/core/html/HTMLEmbedElement.cpp |
@@ -94,6 +94,8 @@ void HTMLEmbedElement::parseAttribute(const QualifiedName& name, const AtomicStr |
size_t pos = m_serviceType.find(";"); |
if (pos != kNotFound) |
m_serviceType = m_serviceType.left(pos); |
+ if (!renderer()) |
+ requestPluginCreationWithoutRendererIfPossible(); |
} else if (name == codeAttr) { |
m_url = stripLeadingAndTrailingHTMLSpaces(value); |
} else if (name == srcAttr) { |