2008-07-25 08:07:43 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2008-07-25 08:07:43 +04:00
|
|
|
|
2009-08-20 14:13:06 +04:00
|
|
|
#include "nsIDOMMouseEvent.idl"
|
2008-07-25 08:07:43 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
[builtinclass, uuid(327bdd54-f772-4015-b856-9692154a066c)]
|
2009-08-20 14:13:06 +04:00
|
|
|
interface nsIDOMMouseScrollEvent : nsIDOMMouseEvent
|
2008-07-25 08:07:43 +04:00
|
|
|
{
|
|
|
|
const long HORIZONTAL_AXIS = 1;
|
|
|
|
const long VERTICAL_AXIS = 2;
|
|
|
|
};
|