Index: Source/WebCore/html/HTMLElement.h |
diff --git a/Source/WebCore/html/HTMLElement.h b/Source/WebCore/html/HTMLElement.h |
index 9fb9c80173311d5b051b416dd945800e62b98592..4a2b70f32096e0aa4872ceae7b360b644931281d 100644 |
--- a/Source/WebCore/html/HTMLElement.h |
+++ b/Source/WebCore/html/HTMLElement.h |
@@ -31,11 +31,6 @@ class DocumentFragment; |
class HTMLCollection; |
class HTMLFormElement; |
-#if ENABLE(MICRODATA) |
-class HTMLPropertiesCollection; |
-class MicroDataItemValue; |
-#endif |
- |
enum TranslateAttributeMode { |
TranslateAttributeYes, |
TranslateAttributeNo, |
@@ -95,13 +90,6 @@ public: |
bool hasDirectionAuto() const; |
TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const; |
-#if ENABLE(MICRODATA) |
- void setItemValue(const String&, ExceptionCode&); |
- PassRefPtr<MicroDataItemValue> itemValue() const; |
- PassRefPtr<HTMLPropertiesCollection> properties(); |
- void getItemRefElements(Vector<HTMLElement*>&); |
-#endif |
- |
virtual bool isHTMLUnknownElement() const { return false; } |
virtual bool isLabelable() const { return false; } |
@@ -123,8 +111,6 @@ protected: |
virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0); |
void calculateAndAdjustDirectionality(); |
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE; |
- |
private: |
virtual String nodeName() const; |
@@ -143,11 +129,6 @@ private: |
TranslateAttributeMode translateAttributeMode() const; |
AtomicString eventNameForAttributeName(const QualifiedName& attrName) const; |
- |
-#if ENABLE(MICRODATA) |
- virtual String itemValueText() const; |
- virtual void setItemValueText(const String&, ExceptionCode&); |
-#endif |
}; |
inline HTMLElement* toHTMLElement(Node* node) |