diff options
Diffstat (limited to 'WebCore/html/HTMLIFrameElement.cpp')
-rw-r--r-- | WebCore/html/HTMLIFrameElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/html/HTMLIFrameElement.cpp b/WebCore/html/HTMLIFrameElement.cpp index cce39df..b3fffe3 100644 --- a/WebCore/html/HTMLIFrameElement.cpp +++ b/WebCore/html/HTMLIFrameElement.cpp @@ -25,11 +25,11 @@ #include "config.h" #include "HTMLIFrameElement.h" +#include "Attribute.h" #include "CSSPropertyNames.h" #include "Frame.h" #include "HTMLDocument.h" #include "HTMLNames.h" -#include "MappedAttribute.h" #include "RenderIFrame.h" namespace WebCore { @@ -68,7 +68,7 @@ bool HTMLIFrameElement::mapToEntry(const QualifiedName& attrName, MappedAttribut } #if ENABLE(SANDBOX) -static SandboxFlags parseSandboxAttribute(MappedAttribute* attribute) +static SandboxFlags parseSandboxAttribute(Attribute* attribute) { if (attribute->isNull()) return SandboxNone; @@ -105,7 +105,7 @@ static SandboxFlags parseSandboxAttribute(MappedAttribute* attribute) } #endif -void HTMLIFrameElement::parseMappedAttribute(MappedAttribute* attr) +void HTMLIFrameElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == widthAttr) addCSSLength(attr, CSSPropertyWidth, attr->value()); |