nsIDOMMouseScrollEvent.idl 501 B

1234567891011121314
  1. /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsIDOMMouseEvent.idl"
  6. [builtinclass, uuid(327bdd54-f772-4015-b856-9692154a066c)]
  7. interface nsIDOMMouseScrollEvent : nsIDOMMouseEvent
  8. {
  9. const long HORIZONTAL_AXIS = 1;
  10. const long VERTICAL_AXIS = 2;
  11. };