summaryrefslogtreecommitdiffstats
path: root/WebCore
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-08-28 09:12:53 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-08-28 09:12:53 -0700
commit3a1bff8368bc18c6cd5928463d4438f16c863587 (patch)
treeb638623685951600cef5627240c609b388cf573a /WebCore
parent7f54b59f3967fd534e13ad52edee6ccf0cf48830 (diff)
parentfab52468ce6f01a540636f41d9c176b46bd5cf60 (diff)
downloadexternal_webkit-3a1bff8368bc18c6cd5928463d4438f16c863587.zip
external_webkit-3a1bff8368bc18c6cd5928463d4438f16c863587.tar.gz
external_webkit-3a1bff8368bc18c6cd5928463d4438f16c863587.tar.bz2
Merge change 23075 into eclair
* changes: We lost ontouchxxx with the new WK. Bring them back.
Diffstat (limited to 'WebCore')
-rw-r--r--WebCore/dom/Document.idl6
-rw-r--r--WebCore/dom/Element.idl6
2 files changed, 12 insertions, 0 deletions
diff --git a/WebCore/dom/Document.idl b/WebCore/dom/Document.idl
index 44966cc..cd3ec77 100644
--- a/WebCore/dom/Document.idl
+++ b/WebCore/dom/Document.idl
@@ -277,6 +277,12 @@ module core {
attribute [DontEnum] EventListener onscroll;
attribute [DontEnum] EventListener onselect;
attribute [DontEnum] EventListener onsubmit;
+#if ENABLE_TOUCH_EVENTS
+ attribute [DontEnum] EventListener ontouchstart;
+ attribute [DontEnum] EventListener ontouchend;
+ attribute [DontEnum] EventListener ontouchmove;
+ attribute [DontEnum] EventListener ontouchcancel;
+#endif
// attribute [DontEnum] EventListener oncanplay;
// attribute [DontEnum] EventListener oncanplaythrough;
diff --git a/WebCore/dom/Element.idl b/WebCore/dom/Element.idl
index 53711e9..e8988e1 100644
--- a/WebCore/dom/Element.idl
+++ b/WebCore/dom/Element.idl
@@ -161,6 +161,12 @@ module core {
attribute [DontEnum] EventListener onscroll;
attribute [DontEnum] EventListener onselect;
attribute [DontEnum] EventListener onsubmit;
+#if ENABLE_TOUCH_EVENTS
+ attribute [DontEnum] EventListener ontouchstart;
+ attribute [DontEnum] EventListener ontouchend;
+ attribute [DontEnum] EventListener ontouchmove;
+ attribute [DontEnum] EventListener ontouchcancel;
+#endif
// attribute [DontEnum] EventListener oncanplay;
// attribute [DontEnum] EventListener oncanplaythrough;