2008-07-09 01:22:20 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-07-09 01:22:20 -07:00
|
|
|
|
|
|
|
#include "nsIDOMHTMLElement.idl"
|
|
|
|
|
|
|
|
/**
|
2011-08-29 05:47:06 -07:00
|
|
|
* The nsIDOMHTMLSourceElement interface is the interface to a HTML
|
2008-07-09 01:22:20 -07:00
|
|
|
* <source> element.
|
|
|
|
*
|
|
|
|
* For more information on this interface, please see
|
|
|
|
* http://www.whatwg.org/specs/web-apps/current-work/#source
|
|
|
|
*
|
|
|
|
* @status UNDER_DEVELOPMENT
|
|
|
|
*/
|
|
|
|
|
2014-04-23 13:55:05 -07:00
|
|
|
[uuid(1deb68f8-2ed6-4a41-b8c8-e0f86510f799)]
|
2013-08-07 13:23:08 -07:00
|
|
|
interface nsIDOMHTMLSourceElement : nsISupports
|
2008-07-09 01:22:20 -07:00
|
|
|
{
|
2008-07-29 21:55:27 -07:00
|
|
|
attribute DOMString src;
|
|
|
|
attribute DOMString type;
|
2014-04-23 13:55:05 -07:00
|
|
|
attribute DOMString srcset;
|
|
|
|
attribute DOMString sizes;
|
2012-05-15 05:56:51 -07:00
|
|
|
attribute DOMString media;
|
2008-07-09 01:22:20 -07:00
|
|
|
};
|