diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-08-28 09:12:53 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-08-28 09:12:53 -0700 |
commit | 3a1bff8368bc18c6cd5928463d4438f16c863587 (patch) | |
tree | b638623685951600cef5627240c609b388cf573a /WebCore | |
parent | 7f54b59f3967fd534e13ad52edee6ccf0cf48830 (diff) | |
parent | fab52468ce6f01a540636f41d9c176b46bd5cf60 (diff) | |
download | external_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.idl | 6 | ||||
-rw-r--r-- | WebCore/dom/Element.idl | 6 |
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; |