diff -r 000000000000 -r 6474c204b198 dom/interfaces/events/nsIDOMTouchEvent.idl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/interfaces/events/nsIDOMTouchEvent.idl Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,21 @@ +/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsIDOMUIEvent.idl" +%{C++ +#include "nsWeakPtr.h" +#include "nsPoint.h" +%} +interface nsIVariant; + +[scriptable, uuid(6d5484f7-92ac-45f8-9388-39b5bad055ce)] +interface nsITouchEventReceiver : nsISupports { + [implicit_jscontext] attribute jsval ontouchstart; + [implicit_jscontext] attribute jsval ontouchend; + [implicit_jscontext] attribute jsval ontouchmove; + [implicit_jscontext] attribute jsval ontouchenter; + [implicit_jscontext] attribute jsval ontouchleave; + [implicit_jscontext] attribute jsval ontouchcancel; +};