nsIDOMSVGElement.idl 766 B

1234567891011121314151617181920212223
  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 "nsIDOMElement.idl"
  6. interface nsIDOMCSSStyleDeclaration;
  7. interface nsIDOMCSSValue;
  8. [uuid(c63517c5-8bab-4cd1-8694-bccafc32a195)]
  9. interface nsIDOMSVGElement : nsIDOMElement
  10. {
  11. // raises DOMException on setting
  12. readonly attribute nsIDOMSVGElement ownerSVGElement;
  13. readonly attribute nsIDOMSVGElement viewportElement;
  14. [binaryname(SVGClassName)]
  15. readonly attribute nsISupports className;
  16. readonly attribute nsIDOMCSSStyleDeclaration style;
  17. };