/* * 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; /**
The script
element is used to embed or reference an executable script within an HTML or XHTML document.
Scripts without async
or defer
attributes are fetched and executed immediately, before the browser continues to parse the page.
async
DOM property defaults to true
for script-created scripts, so the default behavior matches the behavior of IE and WebKit. To request script-inserted external scripts be executed in the insertion order in browsers where the document.createElement("script").async
evaluates to true
(such as Firefox 4.0), set .async=false
on the scripts you want to maintain order. Never call document.write()
from an async
script. In Gecko 1.9.2, calling document.write()
has an unpredictable effect. In Gecko 2.0, calling document.write()
from an async
script has no effect (other than printing a warning to the error console). */
var async : Bool;
var charset : String;
var crossOrigin : String;
/** This Boolean attribute is set to indicate to a browser that the script is meant to be executed after the document has been parsed. Since this feature hasn't yet been implemented by all other major browsers, authors should not assume that the script’s execution will actually be deferred. Never call document.write()
from a defer
script (since Gecko 1.9.2, this will blow away the document). The defer
attribute shouldn't be used on scripts that don't have the src
attribute. Since Gecko 1.9.2, the defer
attribute is ignored on scripts that don't have the src
attribute. However, in Gecko 1.9.1 even inline scripts are deferred if the defer
attribute is set. */
var defer : Bool;
var event : String;
var htmlFor : String;
/** This attribute specifies the URI of an external script; this can be used as an alternative to embedding a script directly within a document. script
elements with an src
attribute specified should not have a script embedded within its tags. */
var src : String;
var text : String;
/** This attribute identifies the scripting language of code embedded within a script
element or referenced via the element’s src
attribute. This is specified as a MIME type; examples of supported MIME types include text/javascript
, text/ecmascript
, application/javascript
, and application/ecmascript
. If this attribute is absent, the script is treated as JavaScript. */
var type : String;
}