summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLElement.idl')
-rw-r--r--WebCore/html/HTMLElement.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/WebCore/html/HTMLElement.idl b/WebCore/html/HTMLElement.idl
index 819b610..8ce5542 100644
--- a/WebCore/html/HTMLElement.idl
+++ b/WebCore/html/HTMLElement.idl
@@ -35,6 +35,10 @@ module html {
attribute [ConvertNullToNullString] DOMString dir;
attribute [ConvertNullToNullString] DOMString className;
+ attribute long tabIndex;
+ void blur();
+ void focus();
+
// Extensions
attribute [ConvertNullToNullString] DOMString innerHTML
setter raises(DOMException);
@@ -45,6 +49,16 @@ module html {
attribute [ConvertNullToNullString] DOMString outerText
setter raises(DOMException);
+ Element insertAdjacentElement(in DOMString where,
+ in Element element)
+ raises(DOMException);
+ void insertAdjacentHTML(in DOMString where,
+ in DOMString html)
+ raises(DOMException);
+ void insertAdjacentText(in DOMString where,
+ in DOMString text)
+ raises(DOMException);
+
readonly attribute HTMLCollection children;
attribute [ConvertNullToNullString] DOMString contentEditable;