/*
* Copyright (C)2005-2013 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
// This file is generated, do not edit!
package js.html;
/** DOM Object
objects expose the HTMLObjectElement (or HTML 4 HTMLObjectElement) interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of Object element, representing external resources.
Documentation for this class was provided by MDN. */
@:native("HTMLObjectElement")
extern class ObjectElement extends Element
{
/** Alignment of the object relative to its context.
Obsolete in
HTML5. */
var align : String;
/** Reflects the
archive
HTML attribute, containing a list of archives for resources for this object.
Obsolete in
HTML5. */
var archive : String;
/** Reflects the
border
HTML attribute, specifying the width of a border around the object.
Obsolete in
HTML5. */
var border : String;
/** The name of an applet class file, containing either the applet's subclass, or the path to get to the class, including the class file itself.
Obsolete in
HTML5. */
var code : String;
/** Reflects the
codebase
HTML attribute, specifying the base path to use to resolve relative URIs.
Obsolete in
HTML5. */
var codeBase : String;
/** Reflects the
codetype
HTML attribute, specifying the content type of the data.
Obsolete in
HTML5. */
var codeType : String;
/** The active document of the object element's nested browsing context, if any; otherwise null. */
var contentDocument(default,null) : Document;
/** Reflects the
data
HTML attribute, specifying the address of a resource's data. */
var data : String;
/** Reflects the
declare
HTML attribute, indicating that this is a declaration, not an instantiation, of the object.
Obsolete in
HTML5. */
var declare : Bool;
/** The object element's form owner, or null if there isn't one. */
var form(default,null) : FormElement;
/** Reflects the {{htmlattrxref("height", "object)}} HTML attribute, specifying the displayed height of the resource in CSS pixels. */
var height : String;
/** Horizontal space in pixels around the control.
Obsolete in
HTML5. */
var hspace : Int;
/** Reflects the
name
HTML attribute, specifying the name of the object (
HTML 4, or of a browsing context (
HTML5. */
var name : String;
/** Reflects the
standby
HTML attribute, specifying a message to display while the object loads.
Obsolete in
HTML5. */
var standby : String;
/** Reflects the {{htmlattrxref("type", "object)}} HTML attribute, specifying the MIME type of the resource. */
var type : String;
/** Reflects the {{htmlattrxref("usemap", "object)}} HTML attribute, specifying a {{HTMLElement("map")}} element to use. */
var useMap : String;
/** A localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation (willValidate is false), or it satisfies its constraints. */
var validationMessage(default,null) : String;
/** The validity states that this element is in. */
var validity(default,null) : ValidityState;
/** Horizontal space in pixels around the control.
Obsolete in
HTML5. */
var vspace : Int;
/** Reflects the
width
HTML attribute, specifying the displayed width of the resource in CSS pixels. */
var width : String;
/** Indicates whether the element is a candidate for constraint validation. Always false for object
objects. */
var willValidate(default,null) : Bool;
function checkValidity() : Bool;
function getSVGDocument() : js.html.svg.Document;
function setCustomValidity( error : String ) : Void;
}