nsIDOMCSSStyleRule.idl 606 B

12345678910111213141516
  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 "nsIDOMCSSRule.idl"
  6. [scriptable, uuid(b5e9af48-a7c2-4f88-aae3-58307af4b5a5)]
  7. interface nsIDOMCSSStyleRule : nsIDOMCSSRule
  8. {
  9. attribute DOMString selectorText;
  10. // raises(DOMException) on setting
  11. readonly attribute nsIDOMCSSStyleDeclaration style;
  12. };