Index: Source/core/dom/Element.h |
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h |
index 547ba773a4d42afd11c0369e8aa9097f456d33c2..1ad1a4be3e0e0aeacd875842b239eb06a68bce16 100644 |
--- a/Source/core/dom/Element.h |
+++ b/Source/core/dom/Element.h |
@@ -82,6 +82,11 @@ public: |
static PassRefPtr<Element> create(const QualifiedName&, Document*); |
virtual ~Element(); |
+ String innerHTML() const; |
+ String outerHTML() const; |
+ void setInnerHTML(const String&, ExceptionState&); |
+ void setOuterHTML(const String&, ExceptionState&); |
+ |
DEFINE_ATTRIBUTE_EVENT_LISTENER(abort); |
DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecopy); |
DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); |