| Index: Source/core/html/HTMLAppletElement.cpp
|
| diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp
|
| index 7620bea6111d841515870b5b0634509045913b84..713cd1c997ffc30c529479dcdce0ea88972059b6 100644
|
| --- a/Source/core/html/HTMLAppletElement.cpp
|
| +++ b/Source/core/html/HTMLAppletElement.cpp
|
| @@ -77,6 +77,11 @@ bool HTMLAppletElement::isURLAttribute(const Attribute& attribute) const
|
| || HTMLPlugInElement::isURLAttribute(attribute);
|
| }
|
|
|
| +bool HTMLAppletElement::hasLegalLinkAttribute(const QualifiedName& name) const
|
| +{
|
| + return name == codebaseAttr || HTMLPlugInElement::hasLegalLinkAttribute(name);
|
| +}
|
| +
|
| bool HTMLAppletElement::rendererIsNeeded(const RenderStyle& style)
|
| {
|
| if (!fastHasAttribute(codeAttr) && !hasAuthorShadowRoot())
|
|
|