dom/interfaces/html/nsIDOMHTMLObjectElement.idl

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. */
     6 #include "nsIDOMHTMLElement.idl"
     8 /**
     9  * The nsIDOMHTMLObjectElement interface is the interface to a [X]HTML
    10  * object element.
    11  *
    12  * This interface is trying to follow the DOM Level 2 HTML specification:
    13  * http://www.w3.org/TR/DOM-Level-2-HTML/
    14  *
    15  * with changes from the work-in-progress WHATWG HTML specification:
    16  * http://www.whatwg.org/specs/web-apps/current-work/
    17  */
    19 interface nsIDOMValidityState;
    21 [scriptable, uuid(baf443d2-da5d-40c9-be3c-c65a69a25250)]
    22 interface nsIDOMHTMLObjectElement : nsISupports
    23 {
    24   readonly attribute nsIDOMHTMLFormElement form;
    25            attribute DOMString             code;
    26            attribute DOMString             align;
    27            attribute DOMString             archive;
    28            attribute DOMString             border;
    29            attribute DOMString             codeBase;
    30            attribute DOMString             codeType;
    31            attribute DOMString             data;
    32            attribute boolean               declare;
    33            attribute DOMString             height;
    34            attribute long                  hspace;
    35            attribute DOMString             name;
    36            attribute DOMString             standby;
    37            attribute DOMString             type;
    38            attribute DOMString             useMap;
    39            attribute long                  vspace;
    40            attribute DOMString             width;
    41   // Introduced in DOM Level 2:
    42   readonly attribute nsIDOMDocument        contentDocument;
    44   // The following lines are parte of the constraint validation API, see:
    45   // http://www.whatwg.org/specs/web-apps/current-work/#the-constraint-validation-api
    46   readonly attribute boolean               willValidate;
    47   readonly attribute nsIDOMValidityState   validity;
    48   readonly attribute DOMString             validationMessage;
    49   boolean  checkValidity();
    50   void     setCustomValidity(in DOMString error);
    51 };

mercurial