2008-07-09 12:22:20 +04: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 15:12:37 +04: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 12:22:20 +04:00
|
|
|
|
|
|
|
#include "nsIDOMHTMLElement.idl"
|
|
|
|
|
|
|
|
/**
|
2011-08-29 16:47:06 +04:00
|
|
|
* The nsIDOMHTMLSourceElement interface is the interface to a HTML
|
2008-07-09 12:22:20 +04: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-24 00:55:05 +04:00
|
|
|
[uuid(1deb68f8-2ed6-4a41-b8c8-e0f86510f799)]
|
2013-08-08 00:23:08 +04:00
|
|
|
interface nsIDOMHTMLSourceElement : nsISupports
|
2008-07-09 12:22:20 +04:00
|
|
|
{
|
2008-07-30 08:55:27 +04:00
|
|
|
attribute DOMString src;
|
|
|
|
attribute DOMString type;
|
2014-04-24 00:55:05 +04:00
|
|
|
attribute DOMString srcset;
|
|
|
|
attribute DOMString sizes;
|
2012-05-15 16:56:51 +04:00
|
|
|
attribute DOMString media;
|
2008-07-09 12:22:20 +04:00
|
|
|
};
|