nsIDOMHTMLSourceElement.idl 896 B

12345678910111213141516171819202122232425262728
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* vim:set ts=2 sw=2 sts=2 et cindent: */
  3. /* This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. #include "nsIDOMHTMLElement.idl"
  7. /**
  8. * The nsIDOMHTMLSourceElement interface is the interface to a HTML
  9. * <source> element.
  10. *
  11. * For more information on this interface, please see
  12. * http://www.whatwg.org/specs/web-apps/current-work/#source
  13. *
  14. * @status UNDER_DEVELOPMENT
  15. */
  16. [uuid(1deb68f8-2ed6-4a41-b8c8-e0f86510f799)]
  17. interface nsIDOMHTMLSourceElement : nsISupports
  18. {
  19. attribute DOMString src;
  20. attribute DOMString type;
  21. attribute DOMString srcset;
  22. attribute DOMString sizes;
  23. attribute DOMString media;
  24. };