summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-07-31 11:52:57 +1000
committerWarwick Allison <warwick.allison@nokia.com>2009-07-31 11:52:57 +1000
commitaa9cf406d62004519ad54596e1c391f9a6439210 (patch)
treedd562b9c296981f2761b76623911be8496c7af84 /src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp
parent987aec28b950e1c9817a20a9dd71afc071cd93ea (diff)
parent56b6a5924008ab5cdbae36e9662eddba923acd5e (diff)
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp59
1 files changed, 1 insertions, 58 deletions
diff --git a/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp b/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp
index 13dd91172..32dfb7134 100644
--- a/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp
+++ b/src/3rdparty/webkit/WebCore/html/HTMLAppletElement.cpp
@@ -2,7 +2,7 @@
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Stefan Schimanski (1Stein@gmx.de)
- * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2005, 2006, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
@@ -24,14 +24,11 @@
#include "config.h"
#include "HTMLAppletElement.h"
-#include "Frame.h"
#include "HTMLDocument.h"
#include "HTMLNames.h"
#include "MappedAttribute.h"
#include "RenderApplet.h"
-#include "RenderInline.h"
#include "Settings.h"
-#include "ScriptController.h"
namespace WebCore {
@@ -43,10 +40,6 @@ HTMLAppletElement::HTMLAppletElement(const QualifiedName& tagName, Document* doc
ASSERT(hasTagName(appletTag));
}
-HTMLAppletElement::~HTMLAppletElement()
-{
-}
-
void HTMLAppletElement::parseMappedAttribute(MappedAttribute* attr)
{
if (attr->name() == altAttr ||
@@ -163,46 +156,6 @@ void HTMLAppletElement::finishParsingChildren()
renderer()->setNeedsLayout(true); // This will cause it to create its widget & the Java applet
}
-String HTMLAppletElement::alt() const
-{
- return getAttribute(altAttr);
-}
-
-void HTMLAppletElement::setAlt(const String &value)
-{
- setAttribute(altAttr, value);
-}
-
-String HTMLAppletElement::archive() const
-{
- return getAttribute(archiveAttr);
-}
-
-void HTMLAppletElement::setArchive(const String &value)
-{
- setAttribute(archiveAttr, value);
-}
-
-String HTMLAppletElement::code() const
-{
- return getAttribute(codeAttr);
-}
-
-void HTMLAppletElement::setCode(const String &value)
-{
- setAttribute(codeAttr, value);
-}
-
-String HTMLAppletElement::codeBase() const
-{
- return getAttribute(codebaseAttr);
-}
-
-void HTMLAppletElement::setCodeBase(const String &value)
-{
- setAttribute(codebaseAttr, value);
-}
-
String HTMLAppletElement::hspace() const
{
return getAttribute(hspaceAttr);
@@ -213,16 +166,6 @@ void HTMLAppletElement::setHspace(const String &value)
setAttribute(hspaceAttr, value);
}
-String HTMLAppletElement::object() const
-{
- return getAttribute(objectAttr);
-}
-
-void HTMLAppletElement::setObject(const String &value)
-{
- setAttribute(objectAttr, value);
-}
-
String HTMLAppletElement::vspace() const
{
return getAttribute(vspaceAttr);