summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLElement.h')
-rw-r--r--WebCore/html/HTMLElement.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/WebCore/html/HTMLElement.h b/WebCore/html/HTMLElement.h
index 8f54d3e..52e9ecf 100644
--- a/WebCore/html/HTMLElement.h
+++ b/WebCore/html/HTMLElement.h
@@ -30,8 +30,6 @@ namespace WebCore {
class DocumentFragment;
class HTMLCollection;
class HTMLFormElement;
-
-enum HTMLTagStatus { TagStatusOptional, TagStatusRequired, TagStatusForbidden };
class HTMLElement : public StyledElement {
public:
@@ -72,8 +70,7 @@ public:
virtual void accessKeyAction(bool sendToAnyElement);
- virtual HTMLTagStatus endTagRequirement() const;
- virtual int tagPriority() const;
+ bool ieForbidsInsertHTML() const;
virtual bool rendererIsNeeded(RenderStyle*);
virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
@@ -90,16 +87,6 @@ protected:
virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
virtual void parseMappedAttribute(Attribute*);
- virtual bool childAllowed(Node* newChild); // Error-checking during parsing that checks the DTD
-
- // Helper function to check the DTD for a given child node.
- virtual bool checkDTD(const Node*);
-
- static bool inEitherTagList(const Node*);
- static bool inInlineTagList(const Node*);
- static bool inBlockTagList(const Node*);
- static bool isRecognizedTagName(const QualifiedName&);
-
HTMLFormElement* findFormAncestor() const;
private: