Index: Source/core/dom/Element.h |
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h |
index 2ff1f47f7e2b8123da0183888c329ed76967bc23..32c299eb1f73900dfea181261875e9f83db6d21f 100644 |
--- a/Source/core/dom/Element.h |
+++ b/Source/core/dom/Element.h |
@@ -82,11 +82,6 @@ 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(beforecopy); |
DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); |
DEFINE_ATTRIBUTE_EVENT_LISTENER(beforepaste); |
@@ -398,6 +393,11 @@ public: |
String innerText(); |
String outerText(); |
+ String innerHTML() const; |
+ String outerHTML() const; |
+ void setInnerHTML(const String&, ExceptionState&); |
+ void setOuterHTML(const String&, ExceptionState&); |
+ void insertAdjacentHTML(const String& where, const String& html, ExceptionState&); |
String textFromChildren(); |
@@ -563,6 +563,8 @@ protected: |
PassRefPtr<RenderStyle> originalStyleForRenderer(); |
+ Node* insertAdjacent(const String& where, Node* newChild, ExceptionState&); |
+ |
private: |
void styleAttributeChanged(const AtomicString& newStyleString, AttributeModificationReason); |