package html
- Alphabetic
- Public
- All
Type Members
-
class
Blob
extends Object
The Blob() constructor returns a new Blob object.
The Blob() constructor returns a new Blob object. The content of the blob consists of the concatenation of the values given in the parameter array.
- Annotations
- @RawJSType() @native()
-
class
BlobPropertyBag
extends Object
Blob Property Bag
Blob Property Bag
- Annotations
- @RawJSType() @ScalaJSDefined()
-
trait
Cookie
extends Object
HTML Cookie
HTML Cookie
- Annotations
- @RawJSType() @native()
-
class
File
extends Blob
The File interface provides information about files and allows JavaScript in a web page to access their content.
The File interface provides information about files and allows JavaScript in a web page to access their content.
File objects are generally retrieved from a FileList object returned as a result of a user selecting files using the element, from a drag and drop operation's DataTransfer object, or from the mozGetAsFile() API on an HTMLCanvasElement. In Gecko, privileged code can create File objects representing any local file without user interaction (see Gecko notes for more information.) A File object is a specific kind of a [[Blob]], and can be used in any context that a Blob can. In particular, [[FileReader]], URL.createObjectURL(), createImageBitmap(), and XMLHttpRequest.send() accept both Blobs and Files.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/File
-
class
FileReader
extends Object
The FileReader object lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
The FileReader object lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
File objects may be obtained from a FileList object returned as a result of a user selecting files using the element, from a drag and drop operation's DataTransfer object, or from the mozGetAsFile() API on an HTMLCanvasElement.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/FileReader
-
trait
HTMLAnchorElement
extends Object with HTMLElement
The HTMLAnchorElement interface represents hyperlink elements and provides special properties and methods (beyond those of the regular HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of such elements.
The HTMLAnchorElement interface represents hyperlink elements and provides special properties and methods (beyond those of the regular HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of such elements.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
-
trait
HTMLAppletElement
extends Object with HTMLElement
HTML Applet element
HTML Applet element
- Annotations
- @RawJSType() @native()
-
trait
HTMLBodyElement
extends Object with HTMLElement
HTML Document Body
HTML Document Body
- Annotations
- @RawJSType() @native()
-
trait
HTMLElement
extends Object with Element
The HTMLElement interface represents any HTML element.
The HTMLElement interface represents any HTML element. Some elements directly implement this interface, others implement it via an interface that inherits it.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
-
trait
HTMLEmbedElement
extends Object with HTMLElement
The HTMLEmbedElement interface, which provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <embed> elements.
The HTMLEmbedElement interface, which provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating <embed> elements.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
-
trait
HTMLFormElement
extends Object with HTMLElement
The HTMLFormElement interface provides methods to create and modify
The HTMLFormElement interface provides methods to create and modify
- Annotations
- @RawJSType() @native()
-
trait
HTMLHeadElement
extends Object with HTMLElement
The HTMLHeadElement interface contains the descriptive information, or metadata, for a document.
The HTMLHeadElement interface contains the descriptive information, or metadata, for a document. This object inherits all of the properties and methods described in the HTMLElement interface.
- Annotations
- @RawJSType() @native()
-
trait
HTMLMenuElement
extends Object with HTMLElement
HTMLMenuElement
HTMLMenuElement
- Annotations
- @RawJSType() @native()
- See also
https://developer.blackberry.com/html5/documentation/v1_0/htmlmenuelement_569241_11.html
https://docs.webplatform.org/wiki/dom/HTMLMenuElement
-
class
Image
extends Object
MDN Image
MDN Image
- Annotations
- @RawJSType() @native()
-
class
ImageBitmap
extends Object
Represents an Image Bitmap
Represents an Image Bitmap
- Annotations
- @RawJSType() @native()
-
class
ScriptElement
extends Object with Element
Script Element
Script Element
- Annotations
- @RawJSType() @native()
-
class
Style
extends Object
HTML Style
HTML Style
- Annotations
- @RawJSType() @native()
-
class
URL
extends Object
The URL interface represent an object providing static methods used for creating object URLs.
The URL interface represent an object providing static methods used for creating object URLs.
When using a user agent where no constructor has been implemented yet, it is possible to access such an object using the Window.URL properties (prefixed with Webkit-based browser as Window.webkitURL).
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/URL
-
class
URLSearchParams
extends Object
The URLSearchParams interface defines utility methods to work with the query string of a URL.
The URLSearchParams interface defines utility methods to work with the query string of a URL.
An object implementing URLSearchParams can directly be used in a for...of structure, instead of entries(): for (var p of mySearchParams) is equivalent to for (var p of mySearchParams.entries()).
- Annotations
- @RawJSType() @native() @JSName( "URLSearchParams" )
- See also
https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams
Value Members
-
object
FileReader
FileReader Companion
-
object
URL
extends Object
- Annotations
- @native() @JSName( "URL" )