nsIDOMHTMLEmbedElement.idl 910 B

1234567891011121314151617181920212223242526
  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 "nsIDOMHTMLElement.idl"
  6. /**
  7. * The nsIDOMHTMLEmbedElement interface is the interface to a [X]HTML
  8. * embed element.
  9. *
  10. * For more information on this interface, please see
  11. * http://www.whatwg.org/specs/web-apps/current-work/#the-embed-element
  12. */
  13. [uuid(adae53da-713d-4570-81ad-dabdd6d46241)]
  14. interface nsIDOMHTMLEmbedElement : nsISupports
  15. {
  16. attribute DOMString align;
  17. attribute DOMString height;
  18. attribute DOMString name;
  19. attribute DOMString src;
  20. attribute DOMString type;
  21. attribute DOMString width;
  22. };