michael@0: /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsIDOMUIEvent.idl" michael@0: michael@0: [scriptable, builtinclass, uuid(49ab3d1d-f549-4cdb-904c-f6b6d3a0ec9e)] michael@0: interface nsIDOMScrollAreaEvent : nsIDOMUIEvent michael@0: { michael@0: // Scroll area client rect michael@0: readonly attribute float x; michael@0: readonly attribute float y; michael@0: readonly attribute float width; michael@0: readonly attribute float height; michael@0: michael@0: void initScrollAreaEvent(in DOMString aEventType, michael@0: in boolean aCanBubble, michael@0: in boolean aCancelable, michael@0: in nsIDOMWindow aView, michael@0: in long aDetail, michael@0: in float x, michael@0: in float y, michael@0: in float width, michael@0: in float height); michael@0: };