Index: Source/core/html/HTMLAppletElement.cpp |
diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp |
index cf79feb9f87814cd15bcc3d40e110107cd35f432..63332c4a6d7d32df3ec3852ab4571cea5e086bd6 100644 |
--- a/Source/core/html/HTMLAppletElement.cpp |
+++ b/Source/core/html/HTMLAppletElement.cpp |
@@ -68,6 +68,12 @@ void HTMLAppletElement::parseAttribute(const QualifiedName& name, const AtomicSt |
HTMLPlugInElement::parseAttribute(name, value); |
} |
+bool HTMLAppletElement::isURLAttribute(const Attribute& attribute) const |
+{ |
+ return attribute.name() == codebaseAttr || attribute.name() == objectAttr |
+ || HTMLPlugInElement::isURLAttribute(attribute); |
+} |
+ |
bool HTMLAppletElement::rendererIsNeeded(const RenderStyle& style) |
{ |
if (!fastHasAttribute(codeAttr)) |