html

package
v0.0.0-...-41cedfc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 21, 2022 License: BSD-3-Clause Imports: 17 Imported by: 9

Documentation

Overview

Package html contains HTML DOM elements types.

Source: HTML Standard (https://html.spec.whatwg.org/)

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AssignedNodesOptions

type AssignedNodesOptions struct {
	Flatten bool
}

dictionary: AssignedNodesOptions

func AssignedNodesOptionsFromJS

func AssignedNodesOptionsFromJS(value js.Value) *AssignedNodesOptions

AssignedNodesOptionsFromJS is allocating a new AssignedNodesOptions object and copy all values in the value javascript object.

func (*AssignedNodesOptions) JSValue

func (_this *AssignedNodesOptions) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type FocusOptions

type FocusOptions struct {
	PreventScroll bool
}

dictionary: FocusOptions

func FocusOptionsFromJS

func FocusOptionsFromJS(value js.Value) *FocusOptions

FocusOptionsFromJS is allocating a new FocusOptions object and copy all values in the value javascript object.

func (*FocusOptions) JSValue

func (_this *FocusOptions) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type FormData

type FormData struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: FormData

func FormDataFromJS

func FormDataFromJS(value js.Value) *FormData

FormDataFromJS is casting a js.Value into FormData.

func FormDataFromWrapper

func FormDataFromWrapper(input core.Wrapper) *FormData

FormDataFromJS is casting from something that holds a js.Value into FormData.

func NewFormData

func NewFormData(form *HTMLFormElement) (_result *FormData)

func (*FormData) Append

func (_this *FormData) Append(name string, value string)

func (*FormData) Append2

func (_this *FormData) Append2(name string, blobValue *file.Blob, filename *string)

func (*FormData) Delete

func (_this *FormData) Delete(name string)

func (*FormData) Entries

func (_this *FormData) Entries() (_result *FormDataEntryIterator)

func (*FormData) ForEach

func (_this *FormData) ForEach(callback *FormDataForEach, optionalThisForCallbackArgument interface{})

func (*FormData) Get

func (_this *FormData) Get(name string) (_result *Union)

func (*FormData) GetAll

func (_this *FormData) GetAll(name string) (_result []*Union)

func (*FormData) Has

func (_this *FormData) Has(name string) (_result bool)

func (*FormData) JSValue

func (_this *FormData) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*FormData) Keys

func (_this *FormData) Keys() (_result *FormDataKeyIterator)

func (*FormData) Set

func (_this *FormData) Set(name string, value string)

func (*FormData) Set2

func (_this *FormData) Set2(name string, blobValue *file.Blob, filename *string)

func (*FormData) Values

func (_this *FormData) Values() (_result *FormDataValueIterator)

type FormDataEntryIterator

type FormDataEntryIterator struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: FormDataEntryIterator

func FormDataEntryIteratorFromJS

func FormDataEntryIteratorFromJS(value js.Value) *FormDataEntryIterator

FormDataEntryIteratorFromJS is casting a js.Value into FormDataEntryIterator.

func FormDataEntryIteratorFromWrapper

func FormDataEntryIteratorFromWrapper(input core.Wrapper) *FormDataEntryIterator

FormDataEntryIteratorFromJS is casting from something that holds a js.Value into FormDataEntryIterator.

func (*FormDataEntryIterator) JSValue

func (_this *FormDataEntryIterator) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*FormDataEntryIterator) Next

func (_this *FormDataEntryIterator) Next() (_result *FormDataEntryIteratorValue)

type FormDataEntryIteratorValue

type FormDataEntryIteratorValue struct {
	Value []js.Value
	Done  bool
}

dictionary: FormDataEntryIteratorValue

func FormDataEntryIteratorValueFromJS

func FormDataEntryIteratorValueFromJS(value js.Value) *FormDataEntryIteratorValue

FormDataEntryIteratorValueFromJS is allocating a new FormDataEntryIteratorValue object and copy all values in the value javascript object.

func (*FormDataEntryIteratorValue) JSValue

func (_this *FormDataEntryIteratorValue) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type FormDataEvent

type FormDataEvent struct {
	domcore.Event
}

class: FormDataEvent

func FormDataEventFromJS

func FormDataEventFromJS(value js.Value) *FormDataEvent

FormDataEventFromJS is casting a js.Value into FormDataEvent.

func FormDataEventFromWrapper

func FormDataEventFromWrapper(input core.Wrapper) *FormDataEvent

FormDataEventFromJS is casting from something that holds a js.Value into FormDataEvent.

func NewFormDataEvent

func NewFormDataEvent(_type string, eventInitDict *FormDataEventInit) (_result *FormDataEvent)

func (*FormDataEvent) FormData

func (_this *FormDataEvent) FormData() *FormData

FormData returning attribute 'formData' with type FormData (idl: FormData).

type FormDataEventInit

type FormDataEventInit struct {
	Bubbles    bool
	Cancelable bool
	Composed   bool
	FormData   *FormData
}

dictionary: FormDataEventInit

func FormDataEventInitFromJS

func FormDataEventInitFromJS(value js.Value) *FormDataEventInit

FormDataEventInitFromJS is allocating a new FormDataEventInit object and copy all values in the value javascript object.

func (*FormDataEventInit) JSValue

func (_this *FormDataEventInit) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type FormDataForEach

type FormDataForEach js.Func

FormDataForEach is a javascript function type.

Call Release() when done to release resouces allocated to this type.

func FormDataForEachToJS

func FormDataForEachToJS(callback FormDataForEachFunc) *FormDataForEach

type FormDataForEachFunc

type FormDataForEachFunc func(currentValue *Union, currentIndex int, listObj *FormData)

callback: FormDataForEach

func FormDataForEachFromJS

func FormDataForEachFromJS(_value js.Value) FormDataForEachFunc

type FormDataKeyIterator

type FormDataKeyIterator struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: FormDataKeyIterator

func FormDataKeyIteratorFromJS

func FormDataKeyIteratorFromJS(value js.Value) *FormDataKeyIterator

FormDataKeyIteratorFromJS is casting a js.Value into FormDataKeyIterator.

func FormDataKeyIteratorFromWrapper

func FormDataKeyIteratorFromWrapper(input core.Wrapper) *FormDataKeyIterator

FormDataKeyIteratorFromJS is casting from something that holds a js.Value into FormDataKeyIterator.

func (*FormDataKeyIterator) JSValue

func (_this *FormDataKeyIterator) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*FormDataKeyIterator) Next

func (_this *FormDataKeyIterator) Next() (_result *FormDataKeyIteratorValue)

type FormDataKeyIteratorValue

type FormDataKeyIteratorValue struct {
	Value string
	Done  bool
}

dictionary: FormDataKeyIteratorValue

func FormDataKeyIteratorValueFromJS

func FormDataKeyIteratorValueFromJS(value js.Value) *FormDataKeyIteratorValue

FormDataKeyIteratorValueFromJS is allocating a new FormDataKeyIteratorValue object and copy all values in the value javascript object.

func (*FormDataKeyIteratorValue) JSValue

func (_this *FormDataKeyIteratorValue) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type FormDataValueIterator

type FormDataValueIterator struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: FormDataValueIterator

func FormDataValueIteratorFromJS

func FormDataValueIteratorFromJS(value js.Value) *FormDataValueIterator

FormDataValueIteratorFromJS is casting a js.Value into FormDataValueIterator.

func FormDataValueIteratorFromWrapper

func FormDataValueIteratorFromWrapper(input core.Wrapper) *FormDataValueIterator

FormDataValueIteratorFromJS is casting from something that holds a js.Value into FormDataValueIterator.

func (*FormDataValueIterator) JSValue

func (_this *FormDataValueIterator) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*FormDataValueIterator) Next

func (_this *FormDataValueIterator) Next() (_result *FormDataValueIteratorValue)

type FormDataValueIteratorValue

type FormDataValueIteratorValue struct {
	Value *Union
	Done  bool
}

dictionary: FormDataValueIteratorValue

func FormDataValueIteratorValueFromJS

func FormDataValueIteratorValueFromJS(value js.Value) *FormDataValueIteratorValue

FormDataValueIteratorValueFromJS is allocating a new FormDataValueIteratorValue object and copy all values in the value javascript object.

func (*FormDataValueIteratorValue) JSValue

func (_this *FormDataValueIteratorValue) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type HTMLAllCollection

type HTMLAllCollection struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: HTMLAllCollection

func HTMLAllCollectionFromJS

func HTMLAllCollectionFromJS(value js.Value) *HTMLAllCollection

HTMLAllCollectionFromJS is casting a js.Value into HTMLAllCollection.

func HTMLAllCollectionFromWrapper

func HTMLAllCollectionFromWrapper(input core.Wrapper) *HTMLAllCollection

HTMLAllCollectionFromJS is casting from something that holds a js.Value into HTMLAllCollection.

func (*HTMLAllCollection) Get

func (_this *HTMLAllCollection) Get(name string) (_result *Union)

func (*HTMLAllCollection) Index

func (_this *HTMLAllCollection) Index(index uint) (_result *dom.Element)

func (*HTMLAllCollection) Item

func (_this *HTMLAllCollection) Item(nameOrIndex *string) (_result *Union)

func (*HTMLAllCollection) JSValue

func (_this *HTMLAllCollection) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*HTMLAllCollection) Length

func (_this *HTMLAllCollection) Length() uint

Length returning attribute 'length' with type uint (idl: unsigned long).

func (*HTMLAllCollection) NamedItem

func (_this *HTMLAllCollection) NamedItem(name string) (_result *Union)

type HTMLAnchorElement

type HTMLAnchorElement struct {
	HTMLElement
}

class: HTMLAnchorElement

func HTMLAnchorElementFromJS

func HTMLAnchorElementFromJS(value js.Value) *HTMLAnchorElement

HTMLAnchorElementFromJS is casting a js.Value into HTMLAnchorElement.

func HTMLAnchorElementFromWrapper

func HTMLAnchorElementFromWrapper(input core.Wrapper) *HTMLAnchorElement

HTMLAnchorElementFromJS is casting from something that holds a js.Value into HTMLAnchorElement.

func (*HTMLAnchorElement) Charset

func (_this *HTMLAnchorElement) Charset() string

Charset returning attribute 'charset' with type string (idl: DOMString).

func (*HTMLAnchorElement) Coords

func (_this *HTMLAnchorElement) Coords() string

Coords returning attribute 'coords' with type string (idl: DOMString).

func (*HTMLAnchorElement) Download

func (_this *HTMLAnchorElement) Download() string

Download returning attribute 'download' with type string (idl: DOMString).

func (*HTMLAnchorElement) Hash

func (_this *HTMLAnchorElement) Hash() string

Hash returning attribute 'hash' with type string (idl: USVString).

func (*HTMLAnchorElement) Host

func (_this *HTMLAnchorElement) Host() string

Host returning attribute 'host' with type string (idl: USVString).

func (*HTMLAnchorElement) Hostname

func (_this *HTMLAnchorElement) Hostname() string

Hostname returning attribute 'hostname' with type string (idl: USVString).

func (*HTMLAnchorElement) Href

func (_this *HTMLAnchorElement) Href() string

Href returning attribute 'href' with type string (idl: USVString).

func (*HTMLAnchorElement) Hreflang

func (_this *HTMLAnchorElement) Hreflang() string

Hreflang returning attribute 'hreflang' with type string (idl: DOMString).

func (*HTMLAnchorElement) Name

func (_this *HTMLAnchorElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLAnchorElement) Origin

func (_this *HTMLAnchorElement) Origin() string

Origin returning attribute 'origin' with type string (idl: USVString).

func (*HTMLAnchorElement) Password

func (_this *HTMLAnchorElement) Password() string

Password returning attribute 'password' with type string (idl: USVString).

func (*HTMLAnchorElement) Pathname

func (_this *HTMLAnchorElement) Pathname() string

Pathname returning attribute 'pathname' with type string (idl: USVString).

func (*HTMLAnchorElement) Ping

func (_this *HTMLAnchorElement) Ping() string

Ping returning attribute 'ping' with type string (idl: USVString).

func (*HTMLAnchorElement) Port

func (_this *HTMLAnchorElement) Port() string

Port returning attribute 'port' with type string (idl: USVString).

func (*HTMLAnchorElement) Protocol

func (_this *HTMLAnchorElement) Protocol() string

Protocol returning attribute 'protocol' with type string (idl: USVString).

func (*HTMLAnchorElement) ReferrerPolicy

func (_this *HTMLAnchorElement) ReferrerPolicy() string

ReferrerPolicy returning attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLAnchorElement) Rel

func (_this *HTMLAnchorElement) Rel() string

Rel returning attribute 'rel' with type string (idl: DOMString).

func (*HTMLAnchorElement) RelList

func (_this *HTMLAnchorElement) RelList() *domcore.DOMTokenList

RelList returning attribute 'relList' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLAnchorElement) Rev

func (_this *HTMLAnchorElement) Rev() string

Rev returning attribute 'rev' with type string (idl: DOMString).

func (*HTMLAnchorElement) Search

func (_this *HTMLAnchorElement) Search() string

Search returning attribute 'search' with type string (idl: USVString).

func (*HTMLAnchorElement) SetCharset

func (_this *HTMLAnchorElement) SetCharset(value string)

SetCharset setting attribute 'charset' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetCoords

func (_this *HTMLAnchorElement) SetCoords(value string)

SetCoords setting attribute 'coords' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetDownload

func (_this *HTMLAnchorElement) SetDownload(value string)

SetDownload setting attribute 'download' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetHash

func (_this *HTMLAnchorElement) SetHash(value string)

SetHash setting attribute 'hash' with type string (idl: USVString).

func (*HTMLAnchorElement) SetHost

func (_this *HTMLAnchorElement) SetHost(value string)

SetHost setting attribute 'host' with type string (idl: USVString).

func (*HTMLAnchorElement) SetHostname

func (_this *HTMLAnchorElement) SetHostname(value string)

SetHostname setting attribute 'hostname' with type string (idl: USVString).

func (*HTMLAnchorElement) SetHref

func (_this *HTMLAnchorElement) SetHref(value string)

SetHref setting attribute 'href' with type string (idl: USVString).

func (*HTMLAnchorElement) SetHreflang

func (_this *HTMLAnchorElement) SetHreflang(value string)

SetHreflang setting attribute 'hreflang' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetName

func (_this *HTMLAnchorElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetPassword

func (_this *HTMLAnchorElement) SetPassword(value string)

SetPassword setting attribute 'password' with type string (idl: USVString).

func (*HTMLAnchorElement) SetPathname

func (_this *HTMLAnchorElement) SetPathname(value string)

SetPathname setting attribute 'pathname' with type string (idl: USVString).

func (*HTMLAnchorElement) SetPing

func (_this *HTMLAnchorElement) SetPing(value string)

SetPing setting attribute 'ping' with type string (idl: USVString).

func (*HTMLAnchorElement) SetPort

func (_this *HTMLAnchorElement) SetPort(value string)

SetPort setting attribute 'port' with type string (idl: USVString).

func (*HTMLAnchorElement) SetProtocol

func (_this *HTMLAnchorElement) SetProtocol(value string)

SetProtocol setting attribute 'protocol' with type string (idl: USVString).

func (*HTMLAnchorElement) SetReferrerPolicy

func (_this *HTMLAnchorElement) SetReferrerPolicy(value string)

SetReferrerPolicy setting attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetRel

func (_this *HTMLAnchorElement) SetRel(value string)

SetRel setting attribute 'rel' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetRev

func (_this *HTMLAnchorElement) SetRev(value string)

SetRev setting attribute 'rev' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetSearch

func (_this *HTMLAnchorElement) SetSearch(value string)

SetSearch setting attribute 'search' with type string (idl: USVString).

func (*HTMLAnchorElement) SetShape

func (_this *HTMLAnchorElement) SetShape(value string)

SetShape setting attribute 'shape' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetTarget

func (_this *HTMLAnchorElement) SetTarget(value string)

SetTarget setting attribute 'target' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetText

func (_this *HTMLAnchorElement) SetText(value string)

SetText setting attribute 'text' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetType

func (_this *HTMLAnchorElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLAnchorElement) SetUsername

func (_this *HTMLAnchorElement) SetUsername(value string)

SetUsername setting attribute 'username' with type string (idl: USVString).

func (*HTMLAnchorElement) Shape

func (_this *HTMLAnchorElement) Shape() string

Shape returning attribute 'shape' with type string (idl: DOMString).

func (*HTMLAnchorElement) Target

func (_this *HTMLAnchorElement) Target() string

Target returning attribute 'target' with type string (idl: DOMString).

func (*HTMLAnchorElement) Text

func (_this *HTMLAnchorElement) Text() string

Text returning attribute 'text' with type string (idl: DOMString).

func (*HTMLAnchorElement) ToString

func (_this *HTMLAnchorElement) ToString() string

ToString is an alias for Href.

func (*HTMLAnchorElement) Type

func (_this *HTMLAnchorElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLAnchorElement) Username

func (_this *HTMLAnchorElement) Username() string

Username returning attribute 'username' with type string (idl: USVString).

type HTMLAreaElement

type HTMLAreaElement struct {
	HTMLElement
}

class: HTMLAreaElement

func HTMLAreaElementFromJS

func HTMLAreaElementFromJS(value js.Value) *HTMLAreaElement

HTMLAreaElementFromJS is casting a js.Value into HTMLAreaElement.

func HTMLAreaElementFromWrapper

func HTMLAreaElementFromWrapper(input core.Wrapper) *HTMLAreaElement

HTMLAreaElementFromJS is casting from something that holds a js.Value into HTMLAreaElement.

func (*HTMLAreaElement) Alt

func (_this *HTMLAreaElement) Alt() string

Alt returning attribute 'alt' with type string (idl: DOMString).

func (*HTMLAreaElement) Coords

func (_this *HTMLAreaElement) Coords() string

Coords returning attribute 'coords' with type string (idl: DOMString).

func (*HTMLAreaElement) Download

func (_this *HTMLAreaElement) Download() string

Download returning attribute 'download' with type string (idl: DOMString).

func (*HTMLAreaElement) Hash

func (_this *HTMLAreaElement) Hash() string

Hash returning attribute 'hash' with type string (idl: USVString).

func (*HTMLAreaElement) Host

func (_this *HTMLAreaElement) Host() string

Host returning attribute 'host' with type string (idl: USVString).

func (*HTMLAreaElement) Hostname

func (_this *HTMLAreaElement) Hostname() string

Hostname returning attribute 'hostname' with type string (idl: USVString).

func (*HTMLAreaElement) Href

func (_this *HTMLAreaElement) Href() string

Href returning attribute 'href' with type string (idl: USVString).

func (*HTMLAreaElement) NoHref

func (_this *HTMLAreaElement) NoHref() bool

NoHref returning attribute 'noHref' with type bool (idl: boolean).

func (*HTMLAreaElement) Origin

func (_this *HTMLAreaElement) Origin() string

Origin returning attribute 'origin' with type string (idl: USVString).

func (*HTMLAreaElement) Password

func (_this *HTMLAreaElement) Password() string

Password returning attribute 'password' with type string (idl: USVString).

func (*HTMLAreaElement) Pathname

func (_this *HTMLAreaElement) Pathname() string

Pathname returning attribute 'pathname' with type string (idl: USVString).

func (*HTMLAreaElement) Ping

func (_this *HTMLAreaElement) Ping() string

Ping returning attribute 'ping' with type string (idl: USVString).

func (*HTMLAreaElement) Port

func (_this *HTMLAreaElement) Port() string

Port returning attribute 'port' with type string (idl: USVString).

func (*HTMLAreaElement) Protocol

func (_this *HTMLAreaElement) Protocol() string

Protocol returning attribute 'protocol' with type string (idl: USVString).

func (*HTMLAreaElement) ReferrerPolicy

func (_this *HTMLAreaElement) ReferrerPolicy() string

ReferrerPolicy returning attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLAreaElement) Rel

func (_this *HTMLAreaElement) Rel() string

Rel returning attribute 'rel' with type string (idl: DOMString).

func (*HTMLAreaElement) RelList

func (_this *HTMLAreaElement) RelList() *domcore.DOMTokenList

RelList returning attribute 'relList' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLAreaElement) Search

func (_this *HTMLAreaElement) Search() string

Search returning attribute 'search' with type string (idl: USVString).

func (*HTMLAreaElement) SetAlt

func (_this *HTMLAreaElement) SetAlt(value string)

SetAlt setting attribute 'alt' with type string (idl: DOMString).

func (*HTMLAreaElement) SetCoords

func (_this *HTMLAreaElement) SetCoords(value string)

SetCoords setting attribute 'coords' with type string (idl: DOMString).

func (*HTMLAreaElement) SetDownload

func (_this *HTMLAreaElement) SetDownload(value string)

SetDownload setting attribute 'download' with type string (idl: DOMString).

func (*HTMLAreaElement) SetHash

func (_this *HTMLAreaElement) SetHash(value string)

SetHash setting attribute 'hash' with type string (idl: USVString).

func (*HTMLAreaElement) SetHost

func (_this *HTMLAreaElement) SetHost(value string)

SetHost setting attribute 'host' with type string (idl: USVString).

func (*HTMLAreaElement) SetHostname

func (_this *HTMLAreaElement) SetHostname(value string)

SetHostname setting attribute 'hostname' with type string (idl: USVString).

func (*HTMLAreaElement) SetHref

func (_this *HTMLAreaElement) SetHref(value string)

SetHref setting attribute 'href' with type string (idl: USVString).

func (*HTMLAreaElement) SetNoHref

func (_this *HTMLAreaElement) SetNoHref(value bool)

SetNoHref setting attribute 'noHref' with type bool (idl: boolean).

func (*HTMLAreaElement) SetPassword

func (_this *HTMLAreaElement) SetPassword(value string)

SetPassword setting attribute 'password' with type string (idl: USVString).

func (*HTMLAreaElement) SetPathname

func (_this *HTMLAreaElement) SetPathname(value string)

SetPathname setting attribute 'pathname' with type string (idl: USVString).

func (*HTMLAreaElement) SetPing

func (_this *HTMLAreaElement) SetPing(value string)

SetPing setting attribute 'ping' with type string (idl: USVString).

func (*HTMLAreaElement) SetPort

func (_this *HTMLAreaElement) SetPort(value string)

SetPort setting attribute 'port' with type string (idl: USVString).

func (*HTMLAreaElement) SetProtocol

func (_this *HTMLAreaElement) SetProtocol(value string)

SetProtocol setting attribute 'protocol' with type string (idl: USVString).

func (*HTMLAreaElement) SetReferrerPolicy

func (_this *HTMLAreaElement) SetReferrerPolicy(value string)

SetReferrerPolicy setting attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLAreaElement) SetRel

func (_this *HTMLAreaElement) SetRel(value string)

SetRel setting attribute 'rel' with type string (idl: DOMString).

func (*HTMLAreaElement) SetSearch

func (_this *HTMLAreaElement) SetSearch(value string)

SetSearch setting attribute 'search' with type string (idl: USVString).

func (*HTMLAreaElement) SetShape

func (_this *HTMLAreaElement) SetShape(value string)

SetShape setting attribute 'shape' with type string (idl: DOMString).

func (*HTMLAreaElement) SetTarget

func (_this *HTMLAreaElement) SetTarget(value string)

SetTarget setting attribute 'target' with type string (idl: DOMString).

func (*HTMLAreaElement) SetUsername

func (_this *HTMLAreaElement) SetUsername(value string)

SetUsername setting attribute 'username' with type string (idl: USVString).

func (*HTMLAreaElement) Shape

func (_this *HTMLAreaElement) Shape() string

Shape returning attribute 'shape' with type string (idl: DOMString).

func (*HTMLAreaElement) Target

func (_this *HTMLAreaElement) Target() string

Target returning attribute 'target' with type string (idl: DOMString).

func (*HTMLAreaElement) ToString

func (_this *HTMLAreaElement) ToString() string

ToString is an alias for Href.

func (*HTMLAreaElement) Username

func (_this *HTMLAreaElement) Username() string

Username returning attribute 'username' with type string (idl: USVString).

type HTMLBRElement

type HTMLBRElement struct {
	HTMLElement
}

class: HTMLBRElement

func HTMLBRElementFromJS

func HTMLBRElementFromJS(value js.Value) *HTMLBRElement

HTMLBRElementFromJS is casting a js.Value into HTMLBRElement.

func HTMLBRElementFromWrapper

func HTMLBRElementFromWrapper(input core.Wrapper) *HTMLBRElement

HTMLBRElementFromJS is casting from something that holds a js.Value into HTMLBRElement.

func (*HTMLBRElement) Clear

func (_this *HTMLBRElement) Clear() string

Clear returning attribute 'clear' with type string (idl: DOMString).

func (*HTMLBRElement) SetClear

func (_this *HTMLBRElement) SetClear(value string)

SetClear setting attribute 'clear' with type string (idl: DOMString).

type HTMLBaseElement

type HTMLBaseElement struct {
	HTMLElement
}

class: HTMLBaseElement

func HTMLBaseElementFromJS

func HTMLBaseElementFromJS(value js.Value) *HTMLBaseElement

HTMLBaseElementFromJS is casting a js.Value into HTMLBaseElement.

func HTMLBaseElementFromWrapper

func HTMLBaseElementFromWrapper(input core.Wrapper) *HTMLBaseElement

HTMLBaseElementFromJS is casting from something that holds a js.Value into HTMLBaseElement.

func (*HTMLBaseElement) Href

func (_this *HTMLBaseElement) Href() string

Href returning attribute 'href' with type string (idl: USVString).

func (*HTMLBaseElement) SetHref

func (_this *HTMLBaseElement) SetHref(value string)

SetHref setting attribute 'href' with type string (idl: USVString).

func (*HTMLBaseElement) SetTarget

func (_this *HTMLBaseElement) SetTarget(value string)

SetTarget setting attribute 'target' with type string (idl: DOMString).

func (*HTMLBaseElement) Target

func (_this *HTMLBaseElement) Target() string

Target returning attribute 'target' with type string (idl: DOMString).

type HTMLBodyElement

type HTMLBodyElement struct {
	HTMLElement
}

class: HTMLBodyElement

func HTMLBodyElementFromJS

func HTMLBodyElementFromJS(value js.Value) *HTMLBodyElement

HTMLBodyElementFromJS is casting a js.Value into HTMLBodyElement.

func HTMLBodyElementFromWrapper

func HTMLBodyElementFromWrapper(input core.Wrapper) *HTMLBodyElement

HTMLBodyElementFromJS is casting from something that holds a js.Value into HTMLBodyElement.

func (_this *HTMLBodyElement) ALink() string

ALink returning attribute 'aLink' with type string (idl: DOMString).

func (*HTMLBodyElement) AddEventAfterPrint

func (_this *HTMLBodyElement) AddEventAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddAfterPrint is adding doing AddEventListener for 'AfterPrint' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventBeforePrint

func (_this *HTMLBodyElement) AddEventBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddBeforePrint is adding doing AddEventListener for 'BeforePrint' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventBeforeUnload

func (_this *HTMLBodyElement) AddEventBeforeUnload(listener func(event *htmlcommon.BeforeUnloadEvent, currentTarget *HTMLBodyElement)) js.Func

AddBeforeUnload is adding doing AddEventListener for 'BeforeUnload' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventHashChange

func (_this *HTMLBodyElement) AddEventHashChange(listener func(event *htmlevent.HashChangeEvent, currentTarget *HTMLBodyElement)) js.Func

AddHashChange is adding doing AddEventListener for 'HashChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventLanguageChange

func (_this *HTMLBodyElement) AddEventLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddLanguageChange is adding doing AddEventListener for 'LanguageChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventMessage

func (_this *HTMLBodyElement) AddEventMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func

AddMessage is adding doing AddEventListener for 'Message' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventMessageError

func (_this *HTMLBodyElement) AddEventMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func

AddMessageError is adding doing AddEventListener for 'MessageError' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventOffline

func (_this *HTMLBodyElement) AddEventOffline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddOffline is adding doing AddEventListener for 'Offline' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventOnline

func (_this *HTMLBodyElement) AddEventOnline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddOnline is adding doing AddEventListener for 'Online' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventOrientationChange

func (_this *HTMLBodyElement) AddEventOrientationChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddOrientationChange is adding doing AddEventListener for 'OrientationChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventPageHide

func (_this *HTMLBodyElement) AddEventPageHide(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLBodyElement)) js.Func

AddPageHide is adding doing AddEventListener for 'PageHide' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventPageShow

func (_this *HTMLBodyElement) AddEventPageShow(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLBodyElement)) js.Func

AddPageShow is adding doing AddEventListener for 'PageShow' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventPopState

func (_this *HTMLBodyElement) AddEventPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLBodyElement)) js.Func

AddPopState is adding doing AddEventListener for 'PopState' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventRejectionHandled

func (_this *HTMLBodyElement) AddEventRejectionHandled(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLBodyElement)) js.Func

AddRejectionHandled is adding doing AddEventListener for 'RejectionHandled' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventStorage

func (_this *HTMLBodyElement) AddEventStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLBodyElement)) js.Func

AddStorage is adding doing AddEventListener for 'Storage' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventUnhandledRejection

func (_this *HTMLBodyElement) AddEventUnhandledRejection(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLBodyElement)) js.Func

AddUnhandledRejection is adding doing AddEventListener for 'UnhandledRejection' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) AddEventUnload

func (_this *HTMLBodyElement) AddEventUnload(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

AddUnload is adding doing AddEventListener for 'Unload' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) Background

func (_this *HTMLBodyElement) Background() string

Background returning attribute 'background' with type string (idl: DOMString).

func (*HTMLBodyElement) BgColor

func (_this *HTMLBodyElement) BgColor() string

BgColor returning attribute 'bgColor' with type string (idl: DOMString).

func (_this *HTMLBodyElement) Link() string

Link returning attribute 'link' with type string (idl: DOMString).

func (*HTMLBodyElement) OnAfterPrint

func (_this *HTMLBodyElement) OnAfterPrint() domcore.EventHandlerFunc

OnAfterPrint returning attribute 'onafterprint' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnBeforePrint

func (_this *HTMLBodyElement) OnBeforePrint() domcore.EventHandlerFunc

OnBeforePrint returning attribute 'onbeforeprint' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnBeforeUnload

OnBeforeUnload returning attribute 'onbeforeunload' with type htmlcommon.OnBeforeUnloadEventHandler (idl: OnBeforeUnloadEventHandlerNonNull).

func (*HTMLBodyElement) OnHashChange

func (_this *HTMLBodyElement) OnHashChange() domcore.EventHandlerFunc

OnHashChange returning attribute 'onhashchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnLanguageChange

func (_this *HTMLBodyElement) OnLanguageChange() domcore.EventHandlerFunc

OnLanguageChange returning attribute 'onlanguagechange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnMessage

func (_this *HTMLBodyElement) OnMessage() domcore.EventHandlerFunc

OnMessage returning attribute 'onmessage' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnMessageError

func (_this *HTMLBodyElement) OnMessageError() domcore.EventHandlerFunc

OnMessageError returning attribute 'onmessageerror' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnOffline

func (_this *HTMLBodyElement) OnOffline() domcore.EventHandlerFunc

OnOffline returning attribute 'onoffline' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnOnline

func (_this *HTMLBodyElement) OnOnline() domcore.EventHandlerFunc

OnOnline returning attribute 'ononline' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnOrientationChange

func (_this *HTMLBodyElement) OnOrientationChange() domcore.EventHandlerFunc

OnOrientationChange returning attribute 'onorientationchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnPageHide

func (_this *HTMLBodyElement) OnPageHide() domcore.EventHandlerFunc

OnPageHide returning attribute 'onpagehide' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnPageShow

func (_this *HTMLBodyElement) OnPageShow() domcore.EventHandlerFunc

OnPageShow returning attribute 'onpageshow' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnPopState

func (_this *HTMLBodyElement) OnPopState() domcore.EventHandlerFunc

OnPopState returning attribute 'onpopstate' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnRejectionHandled

func (_this *HTMLBodyElement) OnRejectionHandled() domcore.EventHandlerFunc

OnRejectionHandled returning attribute 'onrejectionhandled' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnStorage

func (_this *HTMLBodyElement) OnStorage() domcore.EventHandlerFunc

OnStorage returning attribute 'onstorage' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnUnhandledRejection

func (_this *HTMLBodyElement) OnUnhandledRejection() domcore.EventHandlerFunc

OnUnhandledRejection returning attribute 'onunhandledrejection' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLBodyElement) OnUnload

func (_this *HTMLBodyElement) OnUnload() domcore.EventHandlerFunc

OnUnload returning attribute 'onunload' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (_this *HTMLBodyElement) SetALink(value string)

SetALink setting attribute 'aLink' with type string (idl: DOMString).

func (*HTMLBodyElement) SetBackground

func (_this *HTMLBodyElement) SetBackground(value string)

SetBackground setting attribute 'background' with type string (idl: DOMString).

func (*HTMLBodyElement) SetBgColor

func (_this *HTMLBodyElement) SetBgColor(value string)

SetBgColor setting attribute 'bgColor' with type string (idl: DOMString).

func (_this *HTMLBodyElement) SetLink(value string)

SetLink setting attribute 'link' with type string (idl: DOMString).

func (*HTMLBodyElement) SetOnAfterPrint

func (_this *HTMLBodyElement) SetOnAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnAfterPrint is assigning a function to 'onafterprint'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnBeforePrint

func (_this *HTMLBodyElement) SetOnBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnBeforePrint is assigning a function to 'onbeforeprint'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnBeforeUnload

func (_this *HTMLBodyElement) SetOnBeforeUnload(listener func(event *htmlcommon.BeforeUnloadEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnBeforeUnload is assigning a function to 'onbeforeunload'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnHashChange

func (_this *HTMLBodyElement) SetOnHashChange(listener func(event *htmlevent.HashChangeEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnHashChange is assigning a function to 'onhashchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnLanguageChange

func (_this *HTMLBodyElement) SetOnLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnLanguageChange is assigning a function to 'onlanguagechange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnMessage

func (_this *HTMLBodyElement) SetOnMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnMessage is assigning a function to 'onmessage'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnMessageError

func (_this *HTMLBodyElement) SetOnMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnMessageError is assigning a function to 'onmessageerror'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnOffline

func (_this *HTMLBodyElement) SetOnOffline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnOffline is assigning a function to 'onoffline'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnOnline

func (_this *HTMLBodyElement) SetOnOnline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnOnline is assigning a function to 'ononline'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnOrientationChange

func (_this *HTMLBodyElement) SetOnOrientationChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnOrientationChange is assigning a function to 'onorientationchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnPageHide

func (_this *HTMLBodyElement) SetOnPageHide(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnPageHide is assigning a function to 'onpagehide'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnPageShow

func (_this *HTMLBodyElement) SetOnPageShow(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnPageShow is assigning a function to 'onpageshow'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnPopState

func (_this *HTMLBodyElement) SetOnPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnPopState is assigning a function to 'onpopstate'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnRejectionHandled

func (_this *HTMLBodyElement) SetOnRejectionHandled(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnRejectionHandled is assigning a function to 'onrejectionhandled'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnStorage

func (_this *HTMLBodyElement) SetOnStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnStorage is assigning a function to 'onstorage'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnUnhandledRejection

func (_this *HTMLBodyElement) SetOnUnhandledRejection(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLBodyElement)) js.Func

SetOnUnhandledRejection is assigning a function to 'onunhandledrejection'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetOnUnload

func (_this *HTMLBodyElement) SetOnUnload(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func

SetOnUnload is assigning a function to 'onunload'. This This method is returning allocated javascript function that need to be released.

func (*HTMLBodyElement) SetText

func (_this *HTMLBodyElement) SetText(value string)

SetText setting attribute 'text' with type string (idl: DOMString).

func (_this *HTMLBodyElement) SetVLink(value string)

SetVLink setting attribute 'vLink' with type string (idl: DOMString).

func (*HTMLBodyElement) Text

func (_this *HTMLBodyElement) Text() string

Text returning attribute 'text' with type string (idl: DOMString).

func (_this *HTMLBodyElement) VLink() string

VLink returning attribute 'vLink' with type string (idl: DOMString).

type HTMLButtonElement

type HTMLButtonElement struct {
	HTMLElement
}

class: HTMLButtonElement

func HTMLButtonElementFromJS

func HTMLButtonElementFromJS(value js.Value) *HTMLButtonElement

HTMLButtonElementFromJS is casting a js.Value into HTMLButtonElement.

func HTMLButtonElementFromWrapper

func HTMLButtonElementFromWrapper(input core.Wrapper) *HTMLButtonElement

HTMLButtonElementFromJS is casting from something that holds a js.Value into HTMLButtonElement.

func (*HTMLButtonElement) Autofocus

func (_this *HTMLButtonElement) Autofocus() bool

Autofocus returning attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLButtonElement) CheckValidity

func (_this *HTMLButtonElement) CheckValidity() (_result bool)

func (*HTMLButtonElement) Disabled

func (_this *HTMLButtonElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLButtonElement) Form

func (_this *HTMLButtonElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLButtonElement) FormAction

func (_this *HTMLButtonElement) FormAction() string

FormAction returning attribute 'formAction' with type string (idl: USVString).

func (*HTMLButtonElement) FormEnctype

func (_this *HTMLButtonElement) FormEnctype() string

FormEnctype returning attribute 'formEnctype' with type string (idl: DOMString).

func (*HTMLButtonElement) FormMethod

func (_this *HTMLButtonElement) FormMethod() string

FormMethod returning attribute 'formMethod' with type string (idl: DOMString).

func (*HTMLButtonElement) FormNoValidate

func (_this *HTMLButtonElement) FormNoValidate() bool

FormNoValidate returning attribute 'formNoValidate' with type bool (idl: boolean).

func (*HTMLButtonElement) FormTarget

func (_this *HTMLButtonElement) FormTarget() string

FormTarget returning attribute 'formTarget' with type string (idl: DOMString).

func (*HTMLButtonElement) Labels

func (_this *HTMLButtonElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLButtonElement) Name

func (_this *HTMLButtonElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLButtonElement) ReportValidity

func (_this *HTMLButtonElement) ReportValidity() (_result bool)

func (*HTMLButtonElement) SetAutofocus

func (_this *HTMLButtonElement) SetAutofocus(value bool)

SetAutofocus setting attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLButtonElement) SetCustomValidity

func (_this *HTMLButtonElement) SetCustomValidity(_error string)

func (*HTMLButtonElement) SetDisabled

func (_this *HTMLButtonElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLButtonElement) SetFormAction

func (_this *HTMLButtonElement) SetFormAction(value string)

SetFormAction setting attribute 'formAction' with type string (idl: USVString).

func (*HTMLButtonElement) SetFormEnctype

func (_this *HTMLButtonElement) SetFormEnctype(value string)

SetFormEnctype setting attribute 'formEnctype' with type string (idl: DOMString).

func (*HTMLButtonElement) SetFormMethod

func (_this *HTMLButtonElement) SetFormMethod(value string)

SetFormMethod setting attribute 'formMethod' with type string (idl: DOMString).

func (*HTMLButtonElement) SetFormNoValidate

func (_this *HTMLButtonElement) SetFormNoValidate(value bool)

SetFormNoValidate setting attribute 'formNoValidate' with type bool (idl: boolean).

func (*HTMLButtonElement) SetFormTarget

func (_this *HTMLButtonElement) SetFormTarget(value string)

SetFormTarget setting attribute 'formTarget' with type string (idl: DOMString).

func (*HTMLButtonElement) SetName

func (_this *HTMLButtonElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLButtonElement) SetType

func (_this *HTMLButtonElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLButtonElement) SetValue

func (_this *HTMLButtonElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLButtonElement) Type

func (_this *HTMLButtonElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLButtonElement) ValidationMessage

func (_this *HTMLButtonElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLButtonElement) Validity

func (_this *HTMLButtonElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLButtonElement) Value

func (_this *HTMLButtonElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLButtonElement) WillValidate

func (_this *HTMLButtonElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

type HTMLDListElement

type HTMLDListElement struct {
	HTMLElement
}

class: HTMLDListElement

func HTMLDListElementFromJS

func HTMLDListElementFromJS(value js.Value) *HTMLDListElement

HTMLDListElementFromJS is casting a js.Value into HTMLDListElement.

func HTMLDListElementFromWrapper

func HTMLDListElementFromWrapper(input core.Wrapper) *HTMLDListElement

HTMLDListElementFromJS is casting from something that holds a js.Value into HTMLDListElement.

func (*HTMLDListElement) Compact

func (_this *HTMLDListElement) Compact() bool

Compact returning attribute 'compact' with type bool (idl: boolean).

func (*HTMLDListElement) SetCompact

func (_this *HTMLDListElement) SetCompact(value bool)

SetCompact setting attribute 'compact' with type bool (idl: boolean).

type HTMLDataElement

type HTMLDataElement struct {
	HTMLElement
}

class: HTMLDataElement

func HTMLDataElementFromJS

func HTMLDataElementFromJS(value js.Value) *HTMLDataElement

HTMLDataElementFromJS is casting a js.Value into HTMLDataElement.

func HTMLDataElementFromWrapper

func HTMLDataElementFromWrapper(input core.Wrapper) *HTMLDataElement

HTMLDataElementFromJS is casting from something that holds a js.Value into HTMLDataElement.

func (*HTMLDataElement) SetValue

func (_this *HTMLDataElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLDataElement) Value

func (_this *HTMLDataElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

type HTMLDataListElement

type HTMLDataListElement struct {
	HTMLElement
}

class: HTMLDataListElement

func HTMLDataListElementFromJS

func HTMLDataListElementFromJS(value js.Value) *HTMLDataListElement

HTMLDataListElementFromJS is casting a js.Value into HTMLDataListElement.

func HTMLDataListElementFromWrapper

func HTMLDataListElementFromWrapper(input core.Wrapper) *HTMLDataListElement

HTMLDataListElementFromJS is casting from something that holds a js.Value into HTMLDataListElement.

func (*HTMLDataListElement) Options

func (_this *HTMLDataListElement) Options() *dom.HTMLCollection

Options returning attribute 'options' with type dom.HTMLCollection (idl: HTMLCollection).

type HTMLDetailsElement

type HTMLDetailsElement struct {
	HTMLElement
}

class: HTMLDetailsElement

func HTMLDetailsElementFromJS

func HTMLDetailsElementFromJS(value js.Value) *HTMLDetailsElement

HTMLDetailsElementFromJS is casting a js.Value into HTMLDetailsElement.

func HTMLDetailsElementFromWrapper

func HTMLDetailsElementFromWrapper(input core.Wrapper) *HTMLDetailsElement

HTMLDetailsElementFromJS is casting from something that holds a js.Value into HTMLDetailsElement.

func (*HTMLDetailsElement) Open

func (_this *HTMLDetailsElement) Open() bool

Open returning attribute 'open' with type bool (idl: boolean).

func (*HTMLDetailsElement) SetOpen

func (_this *HTMLDetailsElement) SetOpen(value bool)

SetOpen setting attribute 'open' with type bool (idl: boolean).

type HTMLDialogElement

type HTMLDialogElement struct {
	HTMLElement
}

class: HTMLDialogElement

func HTMLDialogElementFromJS

func HTMLDialogElementFromJS(value js.Value) *HTMLDialogElement

HTMLDialogElementFromJS is casting a js.Value into HTMLDialogElement.

func HTMLDialogElementFromWrapper

func HTMLDialogElementFromWrapper(input core.Wrapper) *HTMLDialogElement

HTMLDialogElementFromJS is casting from something that holds a js.Value into HTMLDialogElement.

func (*HTMLDialogElement) Close

func (_this *HTMLDialogElement) Close(returnValue *string)

func (*HTMLDialogElement) Open

func (_this *HTMLDialogElement) Open() bool

Open returning attribute 'open' with type bool (idl: boolean).

func (*HTMLDialogElement) ReturnValue

func (_this *HTMLDialogElement) ReturnValue() string

ReturnValue returning attribute 'returnValue' with type string (idl: DOMString).

func (*HTMLDialogElement) SetOpen

func (_this *HTMLDialogElement) SetOpen(value bool)

SetOpen setting attribute 'open' with type bool (idl: boolean).

func (*HTMLDialogElement) SetReturnValue

func (_this *HTMLDialogElement) SetReturnValue(value string)

SetReturnValue setting attribute 'returnValue' with type string (idl: DOMString).

func (*HTMLDialogElement) Show

func (_this *HTMLDialogElement) Show()

func (*HTMLDialogElement) ShowModal

func (_this *HTMLDialogElement) ShowModal()

type HTMLDirectoryElement

type HTMLDirectoryElement struct {
	HTMLElement
}

class: HTMLDirectoryElement

func HTMLDirectoryElementFromJS

func HTMLDirectoryElementFromJS(value js.Value) *HTMLDirectoryElement

HTMLDirectoryElementFromJS is casting a js.Value into HTMLDirectoryElement.

func HTMLDirectoryElementFromWrapper

func HTMLDirectoryElementFromWrapper(input core.Wrapper) *HTMLDirectoryElement

HTMLDirectoryElementFromJS is casting from something that holds a js.Value into HTMLDirectoryElement.

func (*HTMLDirectoryElement) Compact

func (_this *HTMLDirectoryElement) Compact() bool

Compact returning attribute 'compact' with type bool (idl: boolean).

func (*HTMLDirectoryElement) SetCompact

func (_this *HTMLDirectoryElement) SetCompact(value bool)

SetCompact setting attribute 'compact' with type bool (idl: boolean).

type HTMLDivElement

type HTMLDivElement struct {
	HTMLElement
}

class: HTMLDivElement

func HTMLDivElementFromJS

func HTMLDivElementFromJS(value js.Value) *HTMLDivElement

HTMLDivElementFromJS is casting a js.Value into HTMLDivElement.

func HTMLDivElementFromWrapper

func HTMLDivElementFromWrapper(input core.Wrapper) *HTMLDivElement

HTMLDivElementFromJS is casting from something that holds a js.Value into HTMLDivElement.

func (*HTMLDivElement) Align

func (_this *HTMLDivElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLDivElement) SetAlign

func (_this *HTMLDivElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

type HTMLElement

type HTMLElement struct {
	dom.Element
}

class: HTMLElement

func HTMLElementFromJS

func HTMLElementFromJS(value js.Value) *HTMLElement

HTMLElementFromJS is casting a js.Value into HTMLElement.

func HTMLElementFromWrapper

func HTMLElementFromWrapper(input core.Wrapper) *HTMLElement

HTMLElementFromJS is casting from something that holds a js.Value into HTMLElement.

func (*HTMLElement) AccessKey

func (_this *HTMLElement) AccessKey() string

AccessKey returning attribute 'accessKey' with type string (idl: DOMString).

func (*HTMLElement) AccessKeyLabel

func (_this *HTMLElement) AccessKeyLabel() string

AccessKeyLabel returning attribute 'accessKeyLabel' with type string (idl: DOMString).

func (*HTMLElement) AddEventAbort

func (_this *HTMLElement) AddEventAbort(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddAbort is adding doing AddEventListener for 'Abort' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventAnimationCancel

func (_this *HTMLElement) AddEventAnimationCancel(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

AddAnimationCancel is adding doing AddEventListener for 'AnimationCancel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventAnimationEnd

func (_this *HTMLElement) AddEventAnimationEnd(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

AddAnimationEnd is adding doing AddEventListener for 'AnimationEnd' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventAnimationIteration

func (_this *HTMLElement) AddEventAnimationIteration(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

AddAnimationIteration is adding doing AddEventListener for 'AnimationIteration' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventAnimationStart

func (_this *HTMLElement) AddEventAnimationStart(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

AddAnimationStart is adding doing AddEventListener for 'AnimationStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventAuxclick

func (_this *HTMLElement) AddEventAuxclick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddAuxclick is adding doing AddEventListener for 'Auxclick' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventBlur

func (_this *HTMLElement) AddEventBlur(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func

AddBlur is adding doing AddEventListener for 'Blur' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCanPlay

func (_this *HTMLElement) AddEventCanPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddCanPlay is adding doing AddEventListener for 'CanPlay' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCanPlayThrough

func (_this *HTMLElement) AddEventCanPlayThrough(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddCanPlayThrough is adding doing AddEventListener for 'CanPlayThrough' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCancel

func (_this *HTMLElement) AddEventCancel(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddCancel is adding doing AddEventListener for 'Cancel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventChange

func (_this *HTMLElement) AddEventChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddChange is adding doing AddEventListener for 'Change' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventClick

func (_this *HTMLElement) AddEventClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddClick is adding doing AddEventListener for 'Click' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventClose

func (_this *HTMLElement) AddEventClose(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddClose is adding doing AddEventListener for 'Close' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventContextMenu

func (_this *HTMLElement) AddEventContextMenu(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddContextMenu is adding doing AddEventListener for 'ContextMenu' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCopy

func (_this *HTMLElement) AddEventCopy(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

AddCopy is adding doing AddEventListener for 'Copy' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCueChange

func (_this *HTMLElement) AddEventCueChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddCueChange is adding doing AddEventListener for 'CueChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventCut

func (_this *HTMLElement) AddEventCut(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

AddCut is adding doing AddEventListener for 'Cut' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDblClick

func (_this *HTMLElement) AddEventDblClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddDblClick is adding doing AddEventListener for 'DblClick' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDrag

func (_this *HTMLElement) AddEventDrag(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDrag is adding doing AddEventListener for 'Drag' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragEnd

func (_this *HTMLElement) AddEventDragEnd(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragEnd is adding doing AddEventListener for 'DragEnd' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragEnter

func (_this *HTMLElement) AddEventDragEnter(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragEnter is adding doing AddEventListener for 'DragEnter' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragExit

func (_this *HTMLElement) AddEventDragExit(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragExit is adding doing AddEventListener for 'DragExit' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragLeave

func (_this *HTMLElement) AddEventDragLeave(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragLeave is adding doing AddEventListener for 'DragLeave' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragOver

func (_this *HTMLElement) AddEventDragOver(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragOver is adding doing AddEventListener for 'DragOver' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDragStart

func (_this *HTMLElement) AddEventDragStart(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDragStart is adding doing AddEventListener for 'DragStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDrop

func (_this *HTMLElement) AddEventDrop(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

AddDrop is adding doing AddEventListener for 'Drop' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventDurationChange

func (_this *HTMLElement) AddEventDurationChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddDurationChange is adding doing AddEventListener for 'DurationChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventEmptied

func (_this *HTMLElement) AddEventEmptied(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddEmptied is adding doing AddEventListener for 'Emptied' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventEnded

func (_this *HTMLElement) AddEventEnded(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddEnded is adding doing AddEventListener for 'Ended' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventError

func (_this *HTMLElement) AddEventError(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddError is adding doing AddEventListener for 'Error' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventFocus

func (_this *HTMLElement) AddEventFocus(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func

AddFocus is adding doing AddEventListener for 'Focus' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventFormData

func (_this *HTMLElement) AddEventFormData(listener func(event *FormDataEvent, currentTarget *HTMLElement)) js.Func

AddFormData is adding doing AddEventListener for 'FormData' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventGotPointerCapture

func (_this *HTMLElement) AddEventGotPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddGotPointerCapture is adding doing AddEventListener for 'GotPointerCapture' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventInput

func (_this *HTMLElement) AddEventInput(listener func(event *htmlevent.InputEvent, currentTarget *HTMLElement)) js.Func

AddInput is adding doing AddEventListener for 'Input' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventInvalid

func (_this *HTMLElement) AddEventInvalid(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddInvalid is adding doing AddEventListener for 'Invalid' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventKeyDown

func (_this *HTMLElement) AddEventKeyDown(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

AddKeyDown is adding doing AddEventListener for 'KeyDown' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventKeyPress

func (_this *HTMLElement) AddEventKeyPress(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

AddKeyPress is adding doing AddEventListener for 'KeyPress' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventKeyUp

func (_this *HTMLElement) AddEventKeyUp(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

AddKeyUp is adding doing AddEventListener for 'KeyUp' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLoad

func (_this *HTMLElement) AddEventLoad(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddLoad is adding doing AddEventListener for 'Load' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLoadEnd

func (_this *HTMLElement) AddEventLoadEnd(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func

AddLoadEnd is adding doing AddEventListener for 'LoadEnd' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLoadStart

func (_this *HTMLElement) AddEventLoadStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddLoadStart is adding doing AddEventListener for 'LoadStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLoadedData

func (_this *HTMLElement) AddEventLoadedData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddLoadedData is adding doing AddEventListener for 'LoadedData' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLoadedMetaData

func (_this *HTMLElement) AddEventLoadedMetaData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddLoadedMetaData is adding doing AddEventListener for 'LoadedMetaData' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventLostPointerCapture

func (_this *HTMLElement) AddEventLostPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddLostPointerCapture is adding doing AddEventListener for 'LostPointerCapture' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseDown

func (_this *HTMLElement) AddEventMouseDown(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseDown is adding doing AddEventListener for 'MouseDown' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseEnter

func (_this *HTMLElement) AddEventMouseEnter(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseEnter is adding doing AddEventListener for 'MouseEnter' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseLeave

func (_this *HTMLElement) AddEventMouseLeave(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseLeave is adding doing AddEventListener for 'MouseLeave' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseMove

func (_this *HTMLElement) AddEventMouseMove(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseMove is adding doing AddEventListener for 'MouseMove' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseOut

func (_this *HTMLElement) AddEventMouseOut(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseOut is adding doing AddEventListener for 'MouseOut' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseOver

func (_this *HTMLElement) AddEventMouseOver(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseOver is adding doing AddEventListener for 'MouseOver' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventMouseUp

func (_this *HTMLElement) AddEventMouseUp(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

AddMouseUp is adding doing AddEventListener for 'MouseUp' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPaste

func (_this *HTMLElement) AddEventPaste(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

AddPaste is adding doing AddEventListener for 'Paste' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPause

func (_this *HTMLElement) AddEventPause(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddPause is adding doing AddEventListener for 'Pause' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPlay

func (_this *HTMLElement) AddEventPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddPlay is adding doing AddEventListener for 'Play' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPlaying

func (_this *HTMLElement) AddEventPlaying(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddPlaying is adding doing AddEventListener for 'Playing' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerCancel

func (_this *HTMLElement) AddEventPointerCancel(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerCancel is adding doing AddEventListener for 'PointerCancel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerDown

func (_this *HTMLElement) AddEventPointerDown(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerDown is adding doing AddEventListener for 'PointerDown' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerEnter

func (_this *HTMLElement) AddEventPointerEnter(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerEnter is adding doing AddEventListener for 'PointerEnter' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerLeave

func (_this *HTMLElement) AddEventPointerLeave(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerLeave is adding doing AddEventListener for 'PointerLeave' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerMove

func (_this *HTMLElement) AddEventPointerMove(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerMove is adding doing AddEventListener for 'PointerMove' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerOut

func (_this *HTMLElement) AddEventPointerOut(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerOut is adding doing AddEventListener for 'PointerOut' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerOver

func (_this *HTMLElement) AddEventPointerOver(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerOver is adding doing AddEventListener for 'PointerOver' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventPointerUp

func (_this *HTMLElement) AddEventPointerUp(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

AddPointerUp is adding doing AddEventListener for 'PointerUp' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventProgress

func (_this *HTMLElement) AddEventProgress(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func

AddProgress is adding doing AddEventListener for 'Progress' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventRateChange

func (_this *HTMLElement) AddEventRateChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddRateChange is adding doing AddEventListener for 'RateChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventReset

func (_this *HTMLElement) AddEventReset(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddReset is adding doing AddEventListener for 'Reset' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventResize

func (_this *HTMLElement) AddEventResize(listener func(event *htmlevent.UIEvent, currentTarget *HTMLElement)) js.Func

AddResize is adding doing AddEventListener for 'Resize' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventScroll

func (_this *HTMLElement) AddEventScroll(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddScroll is adding doing AddEventListener for 'Scroll' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSecurityPolicyViolation

func (_this *HTMLElement) AddEventSecurityPolicyViolation(listener func(event *csp.SecurityPolicyViolationEvent, currentTarget *HTMLElement)) js.Func

AddSecurityPolicyViolation is adding doing AddEventListener for 'SecurityPolicyViolation' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSeeked

func (_this *HTMLElement) AddEventSeeked(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSeeked is adding doing AddEventListener for 'Seeked' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSeeking

func (_this *HTMLElement) AddEventSeeking(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSeeking is adding doing AddEventListener for 'Seeking' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSelect

func (_this *HTMLElement) AddEventSelect(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSelect is adding doing AddEventListener for 'Select' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSelectStart

func (_this *HTMLElement) AddEventSelectStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSelectStart is adding doing AddEventListener for 'SelectStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSelectionChange

func (_this *HTMLElement) AddEventSelectionChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSelectionChange is adding doing AddEventListener for 'SelectionChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventStalled

func (_this *HTMLElement) AddEventStalled(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddStalled is adding doing AddEventListener for 'Stalled' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSubmit

func (_this *HTMLElement) AddEventSubmit(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSubmit is adding doing AddEventListener for 'Submit' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventSuspend

func (_this *HTMLElement) AddEventSuspend(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddSuspend is adding doing AddEventListener for 'Suspend' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTimeUpdate

func (_this *HTMLElement) AddEventTimeUpdate(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddTimeUpdate is adding doing AddEventListener for 'TimeUpdate' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventToggle

func (_this *HTMLElement) AddEventToggle(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddToggle is adding doing AddEventListener for 'Toggle' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTouchCancel

func (_this *HTMLElement) AddEventTouchCancel(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

AddTouchCancel is adding doing AddEventListener for 'TouchCancel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTouchEnd

func (_this *HTMLElement) AddEventTouchEnd(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

AddTouchEnd is adding doing AddEventListener for 'TouchEnd' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTouchMove

func (_this *HTMLElement) AddEventTouchMove(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

AddTouchMove is adding doing AddEventListener for 'TouchMove' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTouchStart

func (_this *HTMLElement) AddEventTouchStart(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

AddTouchStart is adding doing AddEventListener for 'TouchStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTransitionCancel

func (_this *HTMLElement) AddEventTransitionCancel(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

AddTransitionCancel is adding doing AddEventListener for 'TransitionCancel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTransitionEnd

func (_this *HTMLElement) AddEventTransitionEnd(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

AddTransitionEnd is adding doing AddEventListener for 'TransitionEnd' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTransitionRun

func (_this *HTMLElement) AddEventTransitionRun(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

AddTransitionRun is adding doing AddEventListener for 'TransitionRun' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventTransitionStart

func (_this *HTMLElement) AddEventTransitionStart(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

AddTransitionStart is adding doing AddEventListener for 'TransitionStart' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventVolumeChange

func (_this *HTMLElement) AddEventVolumeChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddVolumeChange is adding doing AddEventListener for 'VolumeChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventWaiting

func (_this *HTMLElement) AddEventWaiting(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

AddWaiting is adding doing AddEventListener for 'Waiting' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AddEventWheel

func (_this *HTMLElement) AddEventWheel(listener func(event *htmlevent.WheelEvent, currentTarget *HTMLElement)) js.Func

AddWheel is adding doing AddEventListener for 'Wheel' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLElement) AttributeStyleMap

func (_this *HTMLElement) AttributeStyleMap() *typedom.StylePropertyMap

AttributeStyleMap returning attribute 'attributeStyleMap' with type typedom.StylePropertyMap (idl: StylePropertyMap).

func (*HTMLElement) Autocapitalize

func (_this *HTMLElement) Autocapitalize() string

Autocapitalize returning attribute 'autocapitalize' with type string (idl: DOMString).

func (*HTMLElement) Blur

func (_this *HTMLElement) Blur()

func (*HTMLElement) Click

func (_this *HTMLElement) Click()

func (*HTMLElement) ContentEditable

func (_this *HTMLElement) ContentEditable() string

ContentEditable returning attribute 'contentEditable' with type string (idl: DOMString).

func (*HTMLElement) Dataset

func (_this *HTMLElement) Dataset() *domcore.DOMStringMap

Dataset returning attribute 'dataset' with type domcore.DOMStringMap (idl: DOMStringMap).

func (*HTMLElement) Dir

func (_this *HTMLElement) Dir() string

Dir returning attribute 'dir' with type string (idl: DOMString).

func (*HTMLElement) Draggable

func (_this *HTMLElement) Draggable() bool

Draggable returning attribute 'draggable' with type bool (idl: boolean).

func (*HTMLElement) EnterKeyHint

func (_this *HTMLElement) EnterKeyHint() string

EnterKeyHint returning attribute 'enterKeyHint' with type string (idl: DOMString).

func (*HTMLElement) Focus

func (_this *HTMLElement) Focus(options *FocusOptions)

func (*HTMLElement) Hidden

func (_this *HTMLElement) Hidden() bool

Hidden returning attribute 'hidden' with type bool (idl: boolean).

func (*HTMLElement) InnerText

func (_this *HTMLElement) InnerText() string

InnerText returning attribute 'innerText' with type string (idl: DOMString).

func (*HTMLElement) InputMode

func (_this *HTMLElement) InputMode() string

InputMode returning attribute 'inputMode' with type string (idl: DOMString).

func (*HTMLElement) IsContentEditable

func (_this *HTMLElement) IsContentEditable() bool

IsContentEditable returning attribute 'isContentEditable' with type bool (idl: boolean).

func (*HTMLElement) Lang

func (_this *HTMLElement) Lang() string

Lang returning attribute 'lang' with type string (idl: DOMString).

func (*HTMLElement) Nonce

func (_this *HTMLElement) Nonce() string

Nonce returning attribute 'nonce' with type string (idl: DOMString).

func (*HTMLElement) OffsetHeight

func (_this *HTMLElement) OffsetHeight() int

OffsetHeight returning attribute 'offsetHeight' with type int (idl: long).

func (*HTMLElement) OffsetLeft

func (_this *HTMLElement) OffsetLeft() int

OffsetLeft returning attribute 'offsetLeft' with type int (idl: long).

func (*HTMLElement) OffsetParent

func (_this *HTMLElement) OffsetParent() *dom.Element

OffsetParent returning attribute 'offsetParent' with type dom.Element (idl: Element).

func (*HTMLElement) OffsetTop

func (_this *HTMLElement) OffsetTop() int

OffsetTop returning attribute 'offsetTop' with type int (idl: long).

func (*HTMLElement) OffsetWidth

func (_this *HTMLElement) OffsetWidth() int

OffsetWidth returning attribute 'offsetWidth' with type int (idl: long).

func (*HTMLElement) OnAbort

func (_this *HTMLElement) OnAbort() domcore.EventHandlerFunc

OnAbort returning attribute 'onabort' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnAnimationCancel

func (_this *HTMLElement) OnAnimationCancel() domcore.EventHandlerFunc

OnAnimationCancel returning attribute 'onanimationcancel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnAnimationEnd

func (_this *HTMLElement) OnAnimationEnd() domcore.EventHandlerFunc

OnAnimationEnd returning attribute 'onanimationend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnAnimationIteration

func (_this *HTMLElement) OnAnimationIteration() domcore.EventHandlerFunc

OnAnimationIteration returning attribute 'onanimationiteration' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnAnimationStart

func (_this *HTMLElement) OnAnimationStart() domcore.EventHandlerFunc

OnAnimationStart returning attribute 'onanimationstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnAuxclick

func (_this *HTMLElement) OnAuxclick() domcore.EventHandlerFunc

OnAuxclick returning attribute 'onauxclick' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnBlur

func (_this *HTMLElement) OnBlur() domcore.EventHandlerFunc

OnBlur returning attribute 'onblur' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCanPlay

func (_this *HTMLElement) OnCanPlay() domcore.EventHandlerFunc

OnCanPlay returning attribute 'oncanplay' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCanPlayThrough

func (_this *HTMLElement) OnCanPlayThrough() domcore.EventHandlerFunc

OnCanPlayThrough returning attribute 'oncanplaythrough' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCancel

func (_this *HTMLElement) OnCancel() domcore.EventHandlerFunc

OnCancel returning attribute 'oncancel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnChange

func (_this *HTMLElement) OnChange() domcore.EventHandlerFunc

OnChange returning attribute 'onchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnClick

func (_this *HTMLElement) OnClick() domcore.EventHandlerFunc

OnClick returning attribute 'onclick' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnClose

func (_this *HTMLElement) OnClose() domcore.EventHandlerFunc

OnClose returning attribute 'onclose' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnContextMenu

func (_this *HTMLElement) OnContextMenu() domcore.EventHandlerFunc

OnContextMenu returning attribute 'oncontextmenu' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCopy

func (_this *HTMLElement) OnCopy() domcore.EventHandlerFunc

OnCopy returning attribute 'oncopy' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCueChange

func (_this *HTMLElement) OnCueChange() domcore.EventHandlerFunc

OnCueChange returning attribute 'oncuechange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnCut

func (_this *HTMLElement) OnCut() domcore.EventHandlerFunc

OnCut returning attribute 'oncut' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDblClick

func (_this *HTMLElement) OnDblClick() domcore.EventHandlerFunc

OnDblClick returning attribute 'ondblclick' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDrag

func (_this *HTMLElement) OnDrag() domcore.EventHandlerFunc

OnDrag returning attribute 'ondrag' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragEnd

func (_this *HTMLElement) OnDragEnd() domcore.EventHandlerFunc

OnDragEnd returning attribute 'ondragend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragEnter

func (_this *HTMLElement) OnDragEnter() domcore.EventHandlerFunc

OnDragEnter returning attribute 'ondragenter' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragExit

func (_this *HTMLElement) OnDragExit() domcore.EventHandlerFunc

OnDragExit returning attribute 'ondragexit' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragLeave

func (_this *HTMLElement) OnDragLeave() domcore.EventHandlerFunc

OnDragLeave returning attribute 'ondragleave' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragOver

func (_this *HTMLElement) OnDragOver() domcore.EventHandlerFunc

OnDragOver returning attribute 'ondragover' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDragStart

func (_this *HTMLElement) OnDragStart() domcore.EventHandlerFunc

OnDragStart returning attribute 'ondragstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDrop

func (_this *HTMLElement) OnDrop() domcore.EventHandlerFunc

OnDrop returning attribute 'ondrop' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnDurationChange

func (_this *HTMLElement) OnDurationChange() domcore.EventHandlerFunc

OnDurationChange returning attribute 'ondurationchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnEmptied

func (_this *HTMLElement) OnEmptied() domcore.EventHandlerFunc

OnEmptied returning attribute 'onemptied' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnEnded

func (_this *HTMLElement) OnEnded() domcore.EventHandlerFunc

OnEnded returning attribute 'onended' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnError

OnError returning attribute 'onerror' with type htmlcommon.OnErrorEventHandler (idl: OnErrorEventHandlerNonNull).

func (*HTMLElement) OnFocus

func (_this *HTMLElement) OnFocus() domcore.EventHandlerFunc

OnFocus returning attribute 'onfocus' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnFormData

func (_this *HTMLElement) OnFormData() domcore.EventHandlerFunc

OnFormData returning attribute 'onformdata' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnGotPointerCapture

func (_this *HTMLElement) OnGotPointerCapture() domcore.EventHandlerFunc

OnGotPointerCapture returning attribute 'ongotpointercapture' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnInput

func (_this *HTMLElement) OnInput() domcore.EventHandlerFunc

OnInput returning attribute 'oninput' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnInvalid

func (_this *HTMLElement) OnInvalid() domcore.EventHandlerFunc

OnInvalid returning attribute 'oninvalid' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnKeyDown

func (_this *HTMLElement) OnKeyDown() domcore.EventHandlerFunc

OnKeyDown returning attribute 'onkeydown' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnKeyPress

func (_this *HTMLElement) OnKeyPress() domcore.EventHandlerFunc

OnKeyPress returning attribute 'onkeypress' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnKeyUp

func (_this *HTMLElement) OnKeyUp() domcore.EventHandlerFunc

OnKeyUp returning attribute 'onkeyup' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLoad

func (_this *HTMLElement) OnLoad() domcore.EventHandlerFunc

OnLoad returning attribute 'onload' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLoadEnd

func (_this *HTMLElement) OnLoadEnd() domcore.EventHandlerFunc

OnLoadEnd returning attribute 'onloadend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLoadStart

func (_this *HTMLElement) OnLoadStart() domcore.EventHandlerFunc

OnLoadStart returning attribute 'onloadstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLoadedData

func (_this *HTMLElement) OnLoadedData() domcore.EventHandlerFunc

OnLoadedData returning attribute 'onloadeddata' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLoadedMetaData

func (_this *HTMLElement) OnLoadedMetaData() domcore.EventHandlerFunc

OnLoadedMetaData returning attribute 'onloadedmetadata' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnLostPointerCapture

func (_this *HTMLElement) OnLostPointerCapture() domcore.EventHandlerFunc

OnLostPointerCapture returning attribute 'onlostpointercapture' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseDown

func (_this *HTMLElement) OnMouseDown() domcore.EventHandlerFunc

OnMouseDown returning attribute 'onmousedown' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseEnter

func (_this *HTMLElement) OnMouseEnter() domcore.EventHandlerFunc

OnMouseEnter returning attribute 'onmouseenter' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseLeave

func (_this *HTMLElement) OnMouseLeave() domcore.EventHandlerFunc

OnMouseLeave returning attribute 'onmouseleave' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseMove

func (_this *HTMLElement) OnMouseMove() domcore.EventHandlerFunc

OnMouseMove returning attribute 'onmousemove' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseOut

func (_this *HTMLElement) OnMouseOut() domcore.EventHandlerFunc

OnMouseOut returning attribute 'onmouseout' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseOver

func (_this *HTMLElement) OnMouseOver() domcore.EventHandlerFunc

OnMouseOver returning attribute 'onmouseover' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnMouseUp

func (_this *HTMLElement) OnMouseUp() domcore.EventHandlerFunc

OnMouseUp returning attribute 'onmouseup' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPaste

func (_this *HTMLElement) OnPaste() domcore.EventHandlerFunc

OnPaste returning attribute 'onpaste' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPause

func (_this *HTMLElement) OnPause() domcore.EventHandlerFunc

OnPause returning attribute 'onpause' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPlay

func (_this *HTMLElement) OnPlay() domcore.EventHandlerFunc

OnPlay returning attribute 'onplay' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPlaying

func (_this *HTMLElement) OnPlaying() domcore.EventHandlerFunc

OnPlaying returning attribute 'onplaying' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerCancel

func (_this *HTMLElement) OnPointerCancel() domcore.EventHandlerFunc

OnPointerCancel returning attribute 'onpointercancel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerDown

func (_this *HTMLElement) OnPointerDown() domcore.EventHandlerFunc

OnPointerDown returning attribute 'onpointerdown' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerEnter

func (_this *HTMLElement) OnPointerEnter() domcore.EventHandlerFunc

OnPointerEnter returning attribute 'onpointerenter' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerLeave

func (_this *HTMLElement) OnPointerLeave() domcore.EventHandlerFunc

OnPointerLeave returning attribute 'onpointerleave' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerMove

func (_this *HTMLElement) OnPointerMove() domcore.EventHandlerFunc

OnPointerMove returning attribute 'onpointermove' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerOut

func (_this *HTMLElement) OnPointerOut() domcore.EventHandlerFunc

OnPointerOut returning attribute 'onpointerout' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerOver

func (_this *HTMLElement) OnPointerOver() domcore.EventHandlerFunc

OnPointerOver returning attribute 'onpointerover' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnPointerUp

func (_this *HTMLElement) OnPointerUp() domcore.EventHandlerFunc

OnPointerUp returning attribute 'onpointerup' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnProgress

func (_this *HTMLElement) OnProgress() domcore.EventHandlerFunc

OnProgress returning attribute 'onprogress' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnRateChange

func (_this *HTMLElement) OnRateChange() domcore.EventHandlerFunc

OnRateChange returning attribute 'onratechange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnReset

func (_this *HTMLElement) OnReset() domcore.EventHandlerFunc

OnReset returning attribute 'onreset' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnResize

func (_this *HTMLElement) OnResize() domcore.EventHandlerFunc

OnResize returning attribute 'onresize' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnScroll

func (_this *HTMLElement) OnScroll() domcore.EventHandlerFunc

OnScroll returning attribute 'onscroll' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSecurityPolicyViolation

func (_this *HTMLElement) OnSecurityPolicyViolation() domcore.EventHandlerFunc

OnSecurityPolicyViolation returning attribute 'onsecuritypolicyviolation' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSeeked

func (_this *HTMLElement) OnSeeked() domcore.EventHandlerFunc

OnSeeked returning attribute 'onseeked' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSeeking

func (_this *HTMLElement) OnSeeking() domcore.EventHandlerFunc

OnSeeking returning attribute 'onseeking' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSelect

func (_this *HTMLElement) OnSelect() domcore.EventHandlerFunc

OnSelect returning attribute 'onselect' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSelectStart

func (_this *HTMLElement) OnSelectStart() domcore.EventHandlerFunc

OnSelectStart returning attribute 'onselectstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSelectionChange

func (_this *HTMLElement) OnSelectionChange() domcore.EventHandlerFunc

OnSelectionChange returning attribute 'onselectionchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnStalled

func (_this *HTMLElement) OnStalled() domcore.EventHandlerFunc

OnStalled returning attribute 'onstalled' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSubmit

func (_this *HTMLElement) OnSubmit() domcore.EventHandlerFunc

OnSubmit returning attribute 'onsubmit' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnSuspend

func (_this *HTMLElement) OnSuspend() domcore.EventHandlerFunc

OnSuspend returning attribute 'onsuspend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTimeUpdate

func (_this *HTMLElement) OnTimeUpdate() domcore.EventHandlerFunc

OnTimeUpdate returning attribute 'ontimeupdate' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnToggle

func (_this *HTMLElement) OnToggle() domcore.EventHandlerFunc

OnToggle returning attribute 'ontoggle' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTouchCancel

func (_this *HTMLElement) OnTouchCancel() domcore.EventHandlerFunc

OnTouchCancel returning attribute 'ontouchcancel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTouchEnd

func (_this *HTMLElement) OnTouchEnd() domcore.EventHandlerFunc

OnTouchEnd returning attribute 'ontouchend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTouchMove

func (_this *HTMLElement) OnTouchMove() domcore.EventHandlerFunc

OnTouchMove returning attribute 'ontouchmove' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTouchStart

func (_this *HTMLElement) OnTouchStart() domcore.EventHandlerFunc

OnTouchStart returning attribute 'ontouchstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTransitionCancel

func (_this *HTMLElement) OnTransitionCancel() domcore.EventHandlerFunc

OnTransitionCancel returning attribute 'ontransitioncancel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTransitionEnd

func (_this *HTMLElement) OnTransitionEnd() domcore.EventHandlerFunc

OnTransitionEnd returning attribute 'ontransitionend' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTransitionRun

func (_this *HTMLElement) OnTransitionRun() domcore.EventHandlerFunc

OnTransitionRun returning attribute 'ontransitionrun' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnTransitionStart

func (_this *HTMLElement) OnTransitionStart() domcore.EventHandlerFunc

OnTransitionStart returning attribute 'ontransitionstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnVolumeChange

func (_this *HTMLElement) OnVolumeChange() domcore.EventHandlerFunc

OnVolumeChange returning attribute 'onvolumechange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnWaiting

func (_this *HTMLElement) OnWaiting() domcore.EventHandlerFunc

OnWaiting returning attribute 'onwaiting' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) OnWheel

func (_this *HTMLElement) OnWheel() domcore.EventHandlerFunc

OnWheel returning attribute 'onwheel' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLElement) SetAccessKey

func (_this *HTMLElement) SetAccessKey(value string)

SetAccessKey setting attribute 'accessKey' with type string (idl: DOMString).

func (*HTMLElement) SetAutocapitalize

func (_this *HTMLElement) SetAutocapitalize(value string)

SetAutocapitalize setting attribute 'autocapitalize' with type string (idl: DOMString).

func (*HTMLElement) SetContentEditable

func (_this *HTMLElement) SetContentEditable(value string)

SetContentEditable setting attribute 'contentEditable' with type string (idl: DOMString).

func (*HTMLElement) SetDir

func (_this *HTMLElement) SetDir(value string)

SetDir setting attribute 'dir' with type string (idl: DOMString).

func (*HTMLElement) SetDraggable

func (_this *HTMLElement) SetDraggable(value bool)

SetDraggable setting attribute 'draggable' with type bool (idl: boolean).

func (*HTMLElement) SetEnterKeyHint

func (_this *HTMLElement) SetEnterKeyHint(value string)

SetEnterKeyHint setting attribute 'enterKeyHint' with type string (idl: DOMString).

func (*HTMLElement) SetHidden

func (_this *HTMLElement) SetHidden(value bool)

SetHidden setting attribute 'hidden' with type bool (idl: boolean).

func (*HTMLElement) SetInnerText

func (_this *HTMLElement) SetInnerText(value string)

SetInnerText setting attribute 'innerText' with type string (idl: DOMString).

func (*HTMLElement) SetInputMode

func (_this *HTMLElement) SetInputMode(value string)

SetInputMode setting attribute 'inputMode' with type string (idl: DOMString).

func (*HTMLElement) SetLang

func (_this *HTMLElement) SetLang(value string)

SetLang setting attribute 'lang' with type string (idl: DOMString).

func (*HTMLElement) SetNonce

func (_this *HTMLElement) SetNonce(value string)

SetNonce setting attribute 'nonce' with type string (idl: DOMString).

func (*HTMLElement) SetOnAbort

func (_this *HTMLElement) SetOnAbort(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnAbort is assigning a function to 'onabort'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnAnimationCancel

func (_this *HTMLElement) SetOnAnimationCancel(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

SetOnAnimationCancel is assigning a function to 'onanimationcancel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnAnimationEnd

func (_this *HTMLElement) SetOnAnimationEnd(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

SetOnAnimationEnd is assigning a function to 'onanimationend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnAnimationIteration

func (_this *HTMLElement) SetOnAnimationIteration(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

SetOnAnimationIteration is assigning a function to 'onanimationiteration'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnAnimationStart

func (_this *HTMLElement) SetOnAnimationStart(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func

SetOnAnimationStart is assigning a function to 'onanimationstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnAuxclick

func (_this *HTMLElement) SetOnAuxclick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnAuxclick is assigning a function to 'onauxclick'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnBlur

func (_this *HTMLElement) SetOnBlur(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func

SetOnBlur is assigning a function to 'onblur'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCanPlay

func (_this *HTMLElement) SetOnCanPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnCanPlay is assigning a function to 'oncanplay'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCanPlayThrough

func (_this *HTMLElement) SetOnCanPlayThrough(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnCanPlayThrough is assigning a function to 'oncanplaythrough'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCancel

func (_this *HTMLElement) SetOnCancel(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnCancel is assigning a function to 'oncancel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnChange

func (_this *HTMLElement) SetOnChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnChange is assigning a function to 'onchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnClick

func (_this *HTMLElement) SetOnClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnClick is assigning a function to 'onclick'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnClose

func (_this *HTMLElement) SetOnClose(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnClose is assigning a function to 'onclose'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnContextMenu

func (_this *HTMLElement) SetOnContextMenu(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnContextMenu is assigning a function to 'oncontextmenu'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCopy

func (_this *HTMLElement) SetOnCopy(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

SetOnCopy is assigning a function to 'oncopy'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCueChange

func (_this *HTMLElement) SetOnCueChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnCueChange is assigning a function to 'oncuechange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnCut

func (_this *HTMLElement) SetOnCut(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

SetOnCut is assigning a function to 'oncut'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDblClick

func (_this *HTMLElement) SetOnDblClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnDblClick is assigning a function to 'ondblclick'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDrag

func (_this *HTMLElement) SetOnDrag(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDrag is assigning a function to 'ondrag'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragEnd

func (_this *HTMLElement) SetOnDragEnd(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragEnd is assigning a function to 'ondragend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragEnter

func (_this *HTMLElement) SetOnDragEnter(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragEnter is assigning a function to 'ondragenter'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragExit

func (_this *HTMLElement) SetOnDragExit(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragExit is assigning a function to 'ondragexit'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragLeave

func (_this *HTMLElement) SetOnDragLeave(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragLeave is assigning a function to 'ondragleave'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragOver

func (_this *HTMLElement) SetOnDragOver(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragOver is assigning a function to 'ondragover'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDragStart

func (_this *HTMLElement) SetOnDragStart(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDragStart is assigning a function to 'ondragstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDrop

func (_this *HTMLElement) SetOnDrop(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func

SetOnDrop is assigning a function to 'ondrop'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnDurationChange

func (_this *HTMLElement) SetOnDurationChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnDurationChange is assigning a function to 'ondurationchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnEmptied

func (_this *HTMLElement) SetOnEmptied(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnEmptied is assigning a function to 'onemptied'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnEnded

func (_this *HTMLElement) SetOnEnded(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnEnded is assigning a function to 'onended'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnError

func (_this *HTMLElement) SetOnError(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnError is assigning a function to 'onerror'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnFocus

func (_this *HTMLElement) SetOnFocus(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func

SetOnFocus is assigning a function to 'onfocus'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnFormData

func (_this *HTMLElement) SetOnFormData(listener func(event *FormDataEvent, currentTarget *HTMLElement)) js.Func

SetOnFormData is assigning a function to 'onformdata'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnGotPointerCapture

func (_this *HTMLElement) SetOnGotPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnGotPointerCapture is assigning a function to 'ongotpointercapture'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnInput

func (_this *HTMLElement) SetOnInput(listener func(event *htmlevent.InputEvent, currentTarget *HTMLElement)) js.Func

SetOnInput is assigning a function to 'oninput'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnInvalid

func (_this *HTMLElement) SetOnInvalid(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnInvalid is assigning a function to 'oninvalid'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnKeyDown

func (_this *HTMLElement) SetOnKeyDown(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

SetOnKeyDown is assigning a function to 'onkeydown'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnKeyPress

func (_this *HTMLElement) SetOnKeyPress(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

SetOnKeyPress is assigning a function to 'onkeypress'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnKeyUp

func (_this *HTMLElement) SetOnKeyUp(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func

SetOnKeyUp is assigning a function to 'onkeyup'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLoad

func (_this *HTMLElement) SetOnLoad(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnLoad is assigning a function to 'onload'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLoadEnd

func (_this *HTMLElement) SetOnLoadEnd(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func

SetOnLoadEnd is assigning a function to 'onloadend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLoadStart

func (_this *HTMLElement) SetOnLoadStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnLoadStart is assigning a function to 'onloadstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLoadedData

func (_this *HTMLElement) SetOnLoadedData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnLoadedData is assigning a function to 'onloadeddata'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLoadedMetaData

func (_this *HTMLElement) SetOnLoadedMetaData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnLoadedMetaData is assigning a function to 'onloadedmetadata'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnLostPointerCapture

func (_this *HTMLElement) SetOnLostPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnLostPointerCapture is assigning a function to 'onlostpointercapture'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseDown

func (_this *HTMLElement) SetOnMouseDown(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseDown is assigning a function to 'onmousedown'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseEnter

func (_this *HTMLElement) SetOnMouseEnter(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseEnter is assigning a function to 'onmouseenter'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseLeave

func (_this *HTMLElement) SetOnMouseLeave(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseLeave is assigning a function to 'onmouseleave'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseMove

func (_this *HTMLElement) SetOnMouseMove(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseMove is assigning a function to 'onmousemove'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseOut

func (_this *HTMLElement) SetOnMouseOut(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseOut is assigning a function to 'onmouseout'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseOver

func (_this *HTMLElement) SetOnMouseOver(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseOver is assigning a function to 'onmouseover'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnMouseUp

func (_this *HTMLElement) SetOnMouseUp(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func

SetOnMouseUp is assigning a function to 'onmouseup'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPaste

func (_this *HTMLElement) SetOnPaste(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func

SetOnPaste is assigning a function to 'onpaste'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPause

func (_this *HTMLElement) SetOnPause(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnPause is assigning a function to 'onpause'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPlay

func (_this *HTMLElement) SetOnPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnPlay is assigning a function to 'onplay'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPlaying

func (_this *HTMLElement) SetOnPlaying(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnPlaying is assigning a function to 'onplaying'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerCancel

func (_this *HTMLElement) SetOnPointerCancel(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerCancel is assigning a function to 'onpointercancel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerDown

func (_this *HTMLElement) SetOnPointerDown(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerDown is assigning a function to 'onpointerdown'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerEnter

func (_this *HTMLElement) SetOnPointerEnter(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerEnter is assigning a function to 'onpointerenter'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerLeave

func (_this *HTMLElement) SetOnPointerLeave(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerLeave is assigning a function to 'onpointerleave'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerMove

func (_this *HTMLElement) SetOnPointerMove(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerMove is assigning a function to 'onpointermove'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerOut

func (_this *HTMLElement) SetOnPointerOut(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerOut is assigning a function to 'onpointerout'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerOver

func (_this *HTMLElement) SetOnPointerOver(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerOver is assigning a function to 'onpointerover'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnPointerUp

func (_this *HTMLElement) SetOnPointerUp(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func

SetOnPointerUp is assigning a function to 'onpointerup'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnProgress

func (_this *HTMLElement) SetOnProgress(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func

SetOnProgress is assigning a function to 'onprogress'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnRateChange

func (_this *HTMLElement) SetOnRateChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnRateChange is assigning a function to 'onratechange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnReset

func (_this *HTMLElement) SetOnReset(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnReset is assigning a function to 'onreset'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnResize

func (_this *HTMLElement) SetOnResize(listener func(event *htmlevent.UIEvent, currentTarget *HTMLElement)) js.Func

SetOnResize is assigning a function to 'onresize'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnScroll

func (_this *HTMLElement) SetOnScroll(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnScroll is assigning a function to 'onscroll'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSecurityPolicyViolation

func (_this *HTMLElement) SetOnSecurityPolicyViolation(listener func(event *csp.SecurityPolicyViolationEvent, currentTarget *HTMLElement)) js.Func

SetOnSecurityPolicyViolation is assigning a function to 'onsecuritypolicyviolation'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSeeked

func (_this *HTMLElement) SetOnSeeked(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSeeked is assigning a function to 'onseeked'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSeeking

func (_this *HTMLElement) SetOnSeeking(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSeeking is assigning a function to 'onseeking'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSelect

func (_this *HTMLElement) SetOnSelect(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSelect is assigning a function to 'onselect'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSelectStart

func (_this *HTMLElement) SetOnSelectStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSelectStart is assigning a function to 'onselectstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSelectionChange

func (_this *HTMLElement) SetOnSelectionChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSelectionChange is assigning a function to 'onselectionchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnStalled

func (_this *HTMLElement) SetOnStalled(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnStalled is assigning a function to 'onstalled'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSubmit

func (_this *HTMLElement) SetOnSubmit(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSubmit is assigning a function to 'onsubmit'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnSuspend

func (_this *HTMLElement) SetOnSuspend(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnSuspend is assigning a function to 'onsuspend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTimeUpdate

func (_this *HTMLElement) SetOnTimeUpdate(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnTimeUpdate is assigning a function to 'ontimeupdate'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnToggle

func (_this *HTMLElement) SetOnToggle(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnToggle is assigning a function to 'ontoggle'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTouchCancel

func (_this *HTMLElement) SetOnTouchCancel(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

SetOnTouchCancel is assigning a function to 'ontouchcancel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTouchEnd

func (_this *HTMLElement) SetOnTouchEnd(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

SetOnTouchEnd is assigning a function to 'ontouchend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTouchMove

func (_this *HTMLElement) SetOnTouchMove(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

SetOnTouchMove is assigning a function to 'ontouchmove'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTouchStart

func (_this *HTMLElement) SetOnTouchStart(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func

SetOnTouchStart is assigning a function to 'ontouchstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTransitionCancel

func (_this *HTMLElement) SetOnTransitionCancel(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

SetOnTransitionCancel is assigning a function to 'ontransitioncancel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTransitionEnd

func (_this *HTMLElement) SetOnTransitionEnd(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

SetOnTransitionEnd is assigning a function to 'ontransitionend'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTransitionRun

func (_this *HTMLElement) SetOnTransitionRun(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

SetOnTransitionRun is assigning a function to 'ontransitionrun'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnTransitionStart

func (_this *HTMLElement) SetOnTransitionStart(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func

SetOnTransitionStart is assigning a function to 'ontransitionstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnVolumeChange

func (_this *HTMLElement) SetOnVolumeChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnVolumeChange is assigning a function to 'onvolumechange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnWaiting

func (_this *HTMLElement) SetOnWaiting(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func

SetOnWaiting is assigning a function to 'onwaiting'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetOnWheel

func (_this *HTMLElement) SetOnWheel(listener func(event *htmlevent.WheelEvent, currentTarget *HTMLElement)) js.Func

SetOnWheel is assigning a function to 'onwheel'. This This method is returning allocated javascript function that need to be released.

func (*HTMLElement) SetSpellcheck

func (_this *HTMLElement) SetSpellcheck(value bool)

SetSpellcheck setting attribute 'spellcheck' with type bool (idl: boolean).

func (*HTMLElement) SetTabIndex

func (_this *HTMLElement) SetTabIndex(value int)

SetTabIndex setting attribute 'tabIndex' with type int (idl: long).

func (*HTMLElement) SetTitle

func (_this *HTMLElement) SetTitle(value string)

SetTitle setting attribute 'title' with type string (idl: DOMString).

func (*HTMLElement) SetTranslate

func (_this *HTMLElement) SetTranslate(value bool)

SetTranslate setting attribute 'translate' with type bool (idl: boolean).

func (*HTMLElement) Spellcheck

func (_this *HTMLElement) Spellcheck() bool

Spellcheck returning attribute 'spellcheck' with type bool (idl: boolean).

func (*HTMLElement) Style

func (_this *HTMLElement) Style() *cssom.CSSStyleDeclaration

Style returning attribute 'style' with type cssom.CSSStyleDeclaration (idl: CSSStyleDeclaration).

func (*HTMLElement) TabIndex

func (_this *HTMLElement) TabIndex() int

TabIndex returning attribute 'tabIndex' with type int (idl: long).

func (*HTMLElement) Title

func (_this *HTMLElement) Title() string

Title returning attribute 'title' with type string (idl: DOMString).

func (*HTMLElement) Translate

func (_this *HTMLElement) Translate() bool

Translate returning attribute 'translate' with type bool (idl: boolean).

type HTMLFieldSetElement

type HTMLFieldSetElement struct {
	HTMLElement
}

class: HTMLFieldSetElement

func HTMLFieldSetElementFromJS

func HTMLFieldSetElementFromJS(value js.Value) *HTMLFieldSetElement

HTMLFieldSetElementFromJS is casting a js.Value into HTMLFieldSetElement.

func HTMLFieldSetElementFromWrapper

func HTMLFieldSetElementFromWrapper(input core.Wrapper) *HTMLFieldSetElement

HTMLFieldSetElementFromJS is casting from something that holds a js.Value into HTMLFieldSetElement.

func (*HTMLFieldSetElement) CheckValidity

func (_this *HTMLFieldSetElement) CheckValidity() (_result bool)

func (*HTMLFieldSetElement) Disabled

func (_this *HTMLFieldSetElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLFieldSetElement) Elements

func (_this *HTMLFieldSetElement) Elements() *dom.HTMLCollection

Elements returning attribute 'elements' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLFieldSetElement) Form

func (_this *HTMLFieldSetElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLFieldSetElement) Name

func (_this *HTMLFieldSetElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLFieldSetElement) ReportValidity

func (_this *HTMLFieldSetElement) ReportValidity() (_result bool)

func (*HTMLFieldSetElement) SetCustomValidity

func (_this *HTMLFieldSetElement) SetCustomValidity(_error string)

func (*HTMLFieldSetElement) SetDisabled

func (_this *HTMLFieldSetElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLFieldSetElement) SetName

func (_this *HTMLFieldSetElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLFieldSetElement) Type

func (_this *HTMLFieldSetElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLFieldSetElement) ValidationMessage

func (_this *HTMLFieldSetElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLFieldSetElement) Validity

func (_this *HTMLFieldSetElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLFieldSetElement) WillValidate

func (_this *HTMLFieldSetElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

type HTMLFontElement

type HTMLFontElement struct {
	HTMLElement
}

class: HTMLFontElement

func HTMLFontElementFromJS

func HTMLFontElementFromJS(value js.Value) *HTMLFontElement

HTMLFontElementFromJS is casting a js.Value into HTMLFontElement.

func HTMLFontElementFromWrapper

func HTMLFontElementFromWrapper(input core.Wrapper) *HTMLFontElement

HTMLFontElementFromJS is casting from something that holds a js.Value into HTMLFontElement.

func (*HTMLFontElement) Color

func (_this *HTMLFontElement) Color() string

Color returning attribute 'color' with type string (idl: DOMString).

func (*HTMLFontElement) Face

func (_this *HTMLFontElement) Face() string

Face returning attribute 'face' with type string (idl: DOMString).

func (*HTMLFontElement) SetColor

func (_this *HTMLFontElement) SetColor(value string)

SetColor setting attribute 'color' with type string (idl: DOMString).

func (*HTMLFontElement) SetFace

func (_this *HTMLFontElement) SetFace(value string)

SetFace setting attribute 'face' with type string (idl: DOMString).

func (*HTMLFontElement) SetSize

func (_this *HTMLFontElement) SetSize(value string)

SetSize setting attribute 'size' with type string (idl: DOMString).

func (*HTMLFontElement) Size

func (_this *HTMLFontElement) Size() string

Size returning attribute 'size' with type string (idl: DOMString).

type HTMLFormControlsCollection

type HTMLFormControlsCollection struct {
	dom.HTMLCollection
}

class: HTMLFormControlsCollection

func HTMLFormControlsCollectionFromJS

func HTMLFormControlsCollectionFromJS(value js.Value) *HTMLFormControlsCollection

HTMLFormControlsCollectionFromJS is casting a js.Value into HTMLFormControlsCollection.

func HTMLFormControlsCollectionFromWrapper

func HTMLFormControlsCollectionFromWrapper(input core.Wrapper) *HTMLFormControlsCollection

HTMLFormControlsCollectionFromJS is casting from something that holds a js.Value into HTMLFormControlsCollection.

func (*HTMLFormControlsCollection) Get2

func (_this *HTMLFormControlsCollection) Get2(name string) (_result *Union)

func (*HTMLFormControlsCollection) NamedItem2

func (_this *HTMLFormControlsCollection) NamedItem2(name string) (_result *Union)

type HTMLFormElement

type HTMLFormElement struct {
	HTMLElement
}

class: HTMLFormElement

func HTMLFormElementFromJS

func HTMLFormElementFromJS(value js.Value) *HTMLFormElement

HTMLFormElementFromJS is casting a js.Value into HTMLFormElement.

func HTMLFormElementFromWrapper

func HTMLFormElementFromWrapper(input core.Wrapper) *HTMLFormElement

HTMLFormElementFromJS is casting from something that holds a js.Value into HTMLFormElement.

func (*HTMLFormElement) AcceptCharset

func (_this *HTMLFormElement) AcceptCharset() string

AcceptCharset returning attribute 'acceptCharset' with type string (idl: DOMString).

func (*HTMLFormElement) Action

func (_this *HTMLFormElement) Action() string

Action returning attribute 'action' with type string (idl: USVString).

func (*HTMLFormElement) Autocomplete

func (_this *HTMLFormElement) Autocomplete() string

Autocomplete returning attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLFormElement) CheckValidity

func (_this *HTMLFormElement) CheckValidity() (_result bool)

func (*HTMLFormElement) Elements

func (_this *HTMLFormElement) Elements() *HTMLFormControlsCollection

Elements returning attribute 'elements' with type HTMLFormControlsCollection (idl: HTMLFormControlsCollection).

func (*HTMLFormElement) Encoding

func (_this *HTMLFormElement) Encoding() string

Encoding returning attribute 'encoding' with type string (idl: DOMString).

func (*HTMLFormElement) Enctype

func (_this *HTMLFormElement) Enctype() string

Enctype returning attribute 'enctype' with type string (idl: DOMString).

func (*HTMLFormElement) Get

func (_this *HTMLFormElement) Get(name string) (_result *Union)

func (*HTMLFormElement) Index

func (_this *HTMLFormElement) Index(index uint) (_result *dom.Element)

func (*HTMLFormElement) Length

func (_this *HTMLFormElement) Length() uint

Length returning attribute 'length' with type uint (idl: unsigned long).

func (*HTMLFormElement) Method

func (_this *HTMLFormElement) Method() string

Method returning attribute 'method' with type string (idl: DOMString).

func (*HTMLFormElement) Name

func (_this *HTMLFormElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLFormElement) NoValidate

func (_this *HTMLFormElement) NoValidate() bool

NoValidate returning attribute 'noValidate' with type bool (idl: boolean).

func (*HTMLFormElement) Rel

func (_this *HTMLFormElement) Rel() string

Rel returning attribute 'rel' with type string (idl: DOMString).

func (*HTMLFormElement) RelList

func (_this *HTMLFormElement) RelList() *domcore.DOMTokenList

RelList returning attribute 'relList' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLFormElement) ReportValidity

func (_this *HTMLFormElement) ReportValidity() (_result bool)

func (*HTMLFormElement) Reset

func (_this *HTMLFormElement) Reset()

func (*HTMLFormElement) SetAcceptCharset

func (_this *HTMLFormElement) SetAcceptCharset(value string)

SetAcceptCharset setting attribute 'acceptCharset' with type string (idl: DOMString).

func (*HTMLFormElement) SetAction

func (_this *HTMLFormElement) SetAction(value string)

SetAction setting attribute 'action' with type string (idl: USVString).

func (*HTMLFormElement) SetAutocomplete

func (_this *HTMLFormElement) SetAutocomplete(value string)

SetAutocomplete setting attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLFormElement) SetEncoding

func (_this *HTMLFormElement) SetEncoding(value string)

SetEncoding setting attribute 'encoding' with type string (idl: DOMString).

func (*HTMLFormElement) SetEnctype

func (_this *HTMLFormElement) SetEnctype(value string)

SetEnctype setting attribute 'enctype' with type string (idl: DOMString).

func (*HTMLFormElement) SetMethod

func (_this *HTMLFormElement) SetMethod(value string)

SetMethod setting attribute 'method' with type string (idl: DOMString).

func (*HTMLFormElement) SetName

func (_this *HTMLFormElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLFormElement) SetNoValidate

func (_this *HTMLFormElement) SetNoValidate(value bool)

SetNoValidate setting attribute 'noValidate' with type bool (idl: boolean).

func (*HTMLFormElement) SetRel

func (_this *HTMLFormElement) SetRel(value string)

SetRel setting attribute 'rel' with type string (idl: DOMString).

func (*HTMLFormElement) SetTarget

func (_this *HTMLFormElement) SetTarget(value string)

SetTarget setting attribute 'target' with type string (idl: DOMString).

func (*HTMLFormElement) Submit

func (_this *HTMLFormElement) Submit()

func (*HTMLFormElement) Target

func (_this *HTMLFormElement) Target() string

Target returning attribute 'target' with type string (idl: DOMString).

type HTMLFrameSetElement

type HTMLFrameSetElement struct {
	HTMLElement
}

class: HTMLFrameSetElement

func HTMLFrameSetElementFromJS

func HTMLFrameSetElementFromJS(value js.Value) *HTMLFrameSetElement

HTMLFrameSetElementFromJS is casting a js.Value into HTMLFrameSetElement.

func HTMLFrameSetElementFromWrapper

func HTMLFrameSetElementFromWrapper(input core.Wrapper) *HTMLFrameSetElement

HTMLFrameSetElementFromJS is casting from something that holds a js.Value into HTMLFrameSetElement.

func (*HTMLFrameSetElement) AddEventAfterPrint

func (_this *HTMLFrameSetElement) AddEventAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddAfterPrint is adding doing AddEventListener for 'AfterPrint' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventBeforePrint

func (_this *HTMLFrameSetElement) AddEventBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddBeforePrint is adding doing AddEventListener for 'BeforePrint' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventBeforeUnload

func (_this *HTMLFrameSetElement) AddEventBeforeUnload(listener func(event *htmlcommon.BeforeUnloadEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddBeforeUnload is adding doing AddEventListener for 'BeforeUnload' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventHashChange

func (_this *HTMLFrameSetElement) AddEventHashChange(listener func(event *htmlevent.HashChangeEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddHashChange is adding doing AddEventListener for 'HashChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventLanguageChange

func (_this *HTMLFrameSetElement) AddEventLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddLanguageChange is adding doing AddEventListener for 'LanguageChange' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventMessage

func (_this *HTMLFrameSetElement) AddEventMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddMessage is adding doing AddEventListener for 'Message' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventMessageError

func (_this *HTMLFrameSetElement) AddEventMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddMessageError is adding doing AddEventListener for 'MessageError' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventOffline

func (_this *HTMLFrameSetElement) AddEventOffline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddOffline is adding doing AddEventListener for 'Offline' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventOnline

func (_this *HTMLFrameSetElement) AddEventOnline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddOnline is adding doing AddEventListener for 'Online' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventPageHide

func (_this *HTMLFrameSetElement) AddEventPageHide(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddPageHide is adding doing AddEventListener for 'PageHide' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventPageShow

func (_this *HTMLFrameSetElement) AddEventPageShow(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddPageShow is adding doing AddEventListener for 'PageShow' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventPopState

func (_this *HTMLFrameSetElement) AddEventPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddPopState is adding doing AddEventListener for 'PopState' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventRejectionHandled

func (_this *HTMLFrameSetElement) AddEventRejectionHandled(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddRejectionHandled is adding doing AddEventListener for 'RejectionHandled' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventStorage

func (_this *HTMLFrameSetElement) AddEventStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddStorage is adding doing AddEventListener for 'Storage' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventUnhandledRejection

func (_this *HTMLFrameSetElement) AddEventUnhandledRejection(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLFrameSetElement)) js.Func

AddUnhandledRejection is adding doing AddEventListener for 'UnhandledRejection' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) AddEventUnload

func (_this *HTMLFrameSetElement) AddEventUnload(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

AddUnload is adding doing AddEventListener for 'Unload' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) Cols

func (_this *HTMLFrameSetElement) Cols() string

Cols returning attribute 'cols' with type string (idl: DOMString).

func (*HTMLFrameSetElement) OnAfterPrint

func (_this *HTMLFrameSetElement) OnAfterPrint() domcore.EventHandlerFunc

OnAfterPrint returning attribute 'onafterprint' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnBeforePrint

func (_this *HTMLFrameSetElement) OnBeforePrint() domcore.EventHandlerFunc

OnBeforePrint returning attribute 'onbeforeprint' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnBeforeUnload

OnBeforeUnload returning attribute 'onbeforeunload' with type htmlcommon.OnBeforeUnloadEventHandler (idl: OnBeforeUnloadEventHandlerNonNull).

func (*HTMLFrameSetElement) OnHashChange

func (_this *HTMLFrameSetElement) OnHashChange() domcore.EventHandlerFunc

OnHashChange returning attribute 'onhashchange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnLanguageChange

func (_this *HTMLFrameSetElement) OnLanguageChange() domcore.EventHandlerFunc

OnLanguageChange returning attribute 'onlanguagechange' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnMessage

func (_this *HTMLFrameSetElement) OnMessage() domcore.EventHandlerFunc

OnMessage returning attribute 'onmessage' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnMessageError

func (_this *HTMLFrameSetElement) OnMessageError() domcore.EventHandlerFunc

OnMessageError returning attribute 'onmessageerror' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnOffline

func (_this *HTMLFrameSetElement) OnOffline() domcore.EventHandlerFunc

OnOffline returning attribute 'onoffline' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnOnline

func (_this *HTMLFrameSetElement) OnOnline() domcore.EventHandlerFunc

OnOnline returning attribute 'ononline' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnPageHide

func (_this *HTMLFrameSetElement) OnPageHide() domcore.EventHandlerFunc

OnPageHide returning attribute 'onpagehide' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnPageShow

func (_this *HTMLFrameSetElement) OnPageShow() domcore.EventHandlerFunc

OnPageShow returning attribute 'onpageshow' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnPopState

func (_this *HTMLFrameSetElement) OnPopState() domcore.EventHandlerFunc

OnPopState returning attribute 'onpopstate' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnRejectionHandled

func (_this *HTMLFrameSetElement) OnRejectionHandled() domcore.EventHandlerFunc

OnRejectionHandled returning attribute 'onrejectionhandled' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnStorage

func (_this *HTMLFrameSetElement) OnStorage() domcore.EventHandlerFunc

OnStorage returning attribute 'onstorage' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnUnhandledRejection

func (_this *HTMLFrameSetElement) OnUnhandledRejection() domcore.EventHandlerFunc

OnUnhandledRejection returning attribute 'onunhandledrejection' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) OnUnload

func (_this *HTMLFrameSetElement) OnUnload() domcore.EventHandlerFunc

OnUnload returning attribute 'onunload' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLFrameSetElement) Rows

func (_this *HTMLFrameSetElement) Rows() string

Rows returning attribute 'rows' with type string (idl: DOMString).

func (*HTMLFrameSetElement) SetCols

func (_this *HTMLFrameSetElement) SetCols(value string)

SetCols setting attribute 'cols' with type string (idl: DOMString).

func (*HTMLFrameSetElement) SetOnAfterPrint

func (_this *HTMLFrameSetElement) SetOnAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnAfterPrint is assigning a function to 'onafterprint'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnBeforePrint

func (_this *HTMLFrameSetElement) SetOnBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnBeforePrint is assigning a function to 'onbeforeprint'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnBeforeUnload

func (_this *HTMLFrameSetElement) SetOnBeforeUnload(listener func(event *htmlcommon.BeforeUnloadEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnBeforeUnload is assigning a function to 'onbeforeunload'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnHashChange

func (_this *HTMLFrameSetElement) SetOnHashChange(listener func(event *htmlevent.HashChangeEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnHashChange is assigning a function to 'onhashchange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnLanguageChange

func (_this *HTMLFrameSetElement) SetOnLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnLanguageChange is assigning a function to 'onlanguagechange'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnMessage

func (_this *HTMLFrameSetElement) SetOnMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnMessage is assigning a function to 'onmessage'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnMessageError

func (_this *HTMLFrameSetElement) SetOnMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnMessageError is assigning a function to 'onmessageerror'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnOffline

func (_this *HTMLFrameSetElement) SetOnOffline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnOffline is assigning a function to 'onoffline'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnOnline

func (_this *HTMLFrameSetElement) SetOnOnline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnOnline is assigning a function to 'ononline'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnPageHide

func (_this *HTMLFrameSetElement) SetOnPageHide(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnPageHide is assigning a function to 'onpagehide'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnPageShow

func (_this *HTMLFrameSetElement) SetOnPageShow(listener func(event *htmlevent.PageTransitionEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnPageShow is assigning a function to 'onpageshow'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnPopState

func (_this *HTMLFrameSetElement) SetOnPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnPopState is assigning a function to 'onpopstate'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnRejectionHandled

func (_this *HTMLFrameSetElement) SetOnRejectionHandled(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnRejectionHandled is assigning a function to 'onrejectionhandled'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnStorage

func (_this *HTMLFrameSetElement) SetOnStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnStorage is assigning a function to 'onstorage'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnUnhandledRejection

func (_this *HTMLFrameSetElement) SetOnUnhandledRejection(listener func(event *htmlevent.PromiseRejectionEvent, currentTarget *HTMLFrameSetElement)) js.Func

SetOnUnhandledRejection is assigning a function to 'onunhandledrejection'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetOnUnload

func (_this *HTMLFrameSetElement) SetOnUnload(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func

SetOnUnload is assigning a function to 'onunload'. This This method is returning allocated javascript function that need to be released.

func (*HTMLFrameSetElement) SetRows

func (_this *HTMLFrameSetElement) SetRows(value string)

SetRows setting attribute 'rows' with type string (idl: DOMString).

type HTMLHRElement

type HTMLHRElement struct {
	HTMLElement
}

class: HTMLHRElement

func HTMLHRElementFromJS

func HTMLHRElementFromJS(value js.Value) *HTMLHRElement

HTMLHRElementFromJS is casting a js.Value into HTMLHRElement.

func HTMLHRElementFromWrapper

func HTMLHRElementFromWrapper(input core.Wrapper) *HTMLHRElement

HTMLHRElementFromJS is casting from something that holds a js.Value into HTMLHRElement.

func (*HTMLHRElement) Align

func (_this *HTMLHRElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLHRElement) Color

func (_this *HTMLHRElement) Color() string

Color returning attribute 'color' with type string (idl: DOMString).

func (*HTMLHRElement) NoShade

func (_this *HTMLHRElement) NoShade() bool

NoShade returning attribute 'noShade' with type bool (idl: boolean).

func (*HTMLHRElement) SetAlign

func (_this *HTMLHRElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLHRElement) SetColor

func (_this *HTMLHRElement) SetColor(value string)

SetColor setting attribute 'color' with type string (idl: DOMString).

func (*HTMLHRElement) SetNoShade

func (_this *HTMLHRElement) SetNoShade(value bool)

SetNoShade setting attribute 'noShade' with type bool (idl: boolean).

func (*HTMLHRElement) SetSize

func (_this *HTMLHRElement) SetSize(value string)

SetSize setting attribute 'size' with type string (idl: DOMString).

func (*HTMLHRElement) SetWidth

func (_this *HTMLHRElement) SetWidth(value string)

SetWidth setting attribute 'width' with type string (idl: DOMString).

func (*HTMLHRElement) Size

func (_this *HTMLHRElement) Size() string

Size returning attribute 'size' with type string (idl: DOMString).

func (*HTMLHRElement) Width

func (_this *HTMLHRElement) Width() string

Width returning attribute 'width' with type string (idl: DOMString).

type HTMLHeadElement

type HTMLHeadElement struct {
	HTMLElement
}

class: HTMLHeadElement

func HTMLHeadElementFromJS

func HTMLHeadElementFromJS(value js.Value) *HTMLHeadElement

HTMLHeadElementFromJS is casting a js.Value into HTMLHeadElement.

func HTMLHeadElementFromWrapper

func HTMLHeadElementFromWrapper(input core.Wrapper) *HTMLHeadElement

HTMLHeadElementFromJS is casting from something that holds a js.Value into HTMLHeadElement.

type HTMLHeadingElement

type HTMLHeadingElement struct {
	HTMLElement
}

class: HTMLHeadingElement

func HTMLHeadingElementFromJS

func HTMLHeadingElementFromJS(value js.Value) *HTMLHeadingElement

HTMLHeadingElementFromJS is casting a js.Value into HTMLHeadingElement.

func HTMLHeadingElementFromWrapper

func HTMLHeadingElementFromWrapper(input core.Wrapper) *HTMLHeadingElement

HTMLHeadingElementFromJS is casting from something that holds a js.Value into HTMLHeadingElement.

func (*HTMLHeadingElement) Align

func (_this *HTMLHeadingElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLHeadingElement) SetAlign

func (_this *HTMLHeadingElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

type HTMLHtmlElement

type HTMLHtmlElement struct {
	HTMLElement
}

class: HTMLHtmlElement

func HTMLHtmlElementFromJS

func HTMLHtmlElementFromJS(value js.Value) *HTMLHtmlElement

HTMLHtmlElementFromJS is casting a js.Value into HTMLHtmlElement.

func HTMLHtmlElementFromWrapper

func HTMLHtmlElementFromWrapper(input core.Wrapper) *HTMLHtmlElement

HTMLHtmlElementFromJS is casting from something that holds a js.Value into HTMLHtmlElement.

func (*HTMLHtmlElement) SetVersion

func (_this *HTMLHtmlElement) SetVersion(value string)

SetVersion setting attribute 'version' with type string (idl: DOMString).

func (*HTMLHtmlElement) Version

func (_this *HTMLHtmlElement) Version() string

Version returning attribute 'version' with type string (idl: DOMString).

type HTMLImageElement

type HTMLImageElement struct {
	HTMLElement
}

class: HTMLImageElement

func HTMLImageElementFromJS

func HTMLImageElementFromJS(value js.Value) *HTMLImageElement

HTMLImageElementFromJS is casting a js.Value into HTMLImageElement.

func HTMLImageElementFromWrapper

func HTMLImageElementFromWrapper(input core.Wrapper) *HTMLImageElement

HTMLImageElementFromJS is casting from something that holds a js.Value into HTMLImageElement.

func (*HTMLImageElement) Align

func (_this *HTMLImageElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLImageElement) Alt

func (_this *HTMLImageElement) Alt() string

Alt returning attribute 'alt' with type string (idl: DOMString).

func (*HTMLImageElement) Border

func (_this *HTMLImageElement) Border() string

Border returning attribute 'border' with type string (idl: DOMString).

func (*HTMLImageElement) Complete

func (_this *HTMLImageElement) Complete() bool

Complete returning attribute 'complete' with type bool (idl: boolean).

func (*HTMLImageElement) CrossOrigin

func (_this *HTMLImageElement) CrossOrigin() *string

CrossOrigin returning attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLImageElement) CurrentSrc

func (_this *HTMLImageElement) CurrentSrc() string

CurrentSrc returning attribute 'currentSrc' with type string (idl: USVString).

func (*HTMLImageElement) Decode

func (_this *HTMLImageElement) Decode() (_result *javascript.PromiseVoid)

func (*HTMLImageElement) Decoding

func (_this *HTMLImageElement) Decoding() string

Decoding returning attribute 'decoding' with type string (idl: DOMString).

func (*HTMLImageElement) Height

func (_this *HTMLImageElement) Height() uint

Height returning attribute 'height' with type uint (idl: unsigned long).

func (*HTMLImageElement) Hspace

func (_this *HTMLImageElement) Hspace() uint

Hspace returning attribute 'hspace' with type uint (idl: unsigned long).

func (*HTMLImageElement) IsMap

func (_this *HTMLImageElement) IsMap() bool

IsMap returning attribute 'isMap' with type bool (idl: boolean).

func (*HTMLImageElement) LongDesc

func (_this *HTMLImageElement) LongDesc() string

LongDesc returning attribute 'longDesc' with type string (idl: USVString).

func (*HTMLImageElement) Lowsrc

func (_this *HTMLImageElement) Lowsrc() string

Lowsrc returning attribute 'lowsrc' with type string (idl: USVString).

func (*HTMLImageElement) Name

func (_this *HTMLImageElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLImageElement) NaturalHeight

func (_this *HTMLImageElement) NaturalHeight() uint

NaturalHeight returning attribute 'naturalHeight' with type uint (idl: unsigned long).

func (*HTMLImageElement) NaturalWidth

func (_this *HTMLImageElement) NaturalWidth() uint

NaturalWidth returning attribute 'naturalWidth' with type uint (idl: unsigned long).

func (*HTMLImageElement) ReferrerPolicy

func (_this *HTMLImageElement) ReferrerPolicy() string

ReferrerPolicy returning attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLImageElement) SetAlign

func (_this *HTMLImageElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLImageElement) SetAlt

func (_this *HTMLImageElement) SetAlt(value string)

SetAlt setting attribute 'alt' with type string (idl: DOMString).

func (*HTMLImageElement) SetBorder

func (_this *HTMLImageElement) SetBorder(value string)

SetBorder setting attribute 'border' with type string (idl: DOMString).

func (*HTMLImageElement) SetCrossOrigin

func (_this *HTMLImageElement) SetCrossOrigin(value *string)

SetCrossOrigin setting attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLImageElement) SetDecoding

func (_this *HTMLImageElement) SetDecoding(value string)

SetDecoding setting attribute 'decoding' with type string (idl: DOMString).

func (*HTMLImageElement) SetHeight

func (_this *HTMLImageElement) SetHeight(value uint)

SetHeight setting attribute 'height' with type uint (idl: unsigned long).

func (*HTMLImageElement) SetHspace

func (_this *HTMLImageElement) SetHspace(value uint)

SetHspace setting attribute 'hspace' with type uint (idl: unsigned long).

func (*HTMLImageElement) SetIsMap

func (_this *HTMLImageElement) SetIsMap(value bool)

SetIsMap setting attribute 'isMap' with type bool (idl: boolean).

func (*HTMLImageElement) SetLongDesc

func (_this *HTMLImageElement) SetLongDesc(value string)

SetLongDesc setting attribute 'longDesc' with type string (idl: USVString).

func (*HTMLImageElement) SetLowsrc

func (_this *HTMLImageElement) SetLowsrc(value string)

SetLowsrc setting attribute 'lowsrc' with type string (idl: USVString).

func (*HTMLImageElement) SetName

func (_this *HTMLImageElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLImageElement) SetReferrerPolicy

func (_this *HTMLImageElement) SetReferrerPolicy(value string)

SetReferrerPolicy setting attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLImageElement) SetSizes

func (_this *HTMLImageElement) SetSizes(value string)

SetSizes setting attribute 'sizes' with type string (idl: DOMString).

func (*HTMLImageElement) SetSrc

func (_this *HTMLImageElement) SetSrc(value string)

SetSrc setting attribute 'src' with type string (idl: USVString).

func (*HTMLImageElement) SetSrcset

func (_this *HTMLImageElement) SetSrcset(value string)

SetSrcset setting attribute 'srcset' with type string (idl: USVString).

func (*HTMLImageElement) SetUseMap

func (_this *HTMLImageElement) SetUseMap(value string)

SetUseMap setting attribute 'useMap' with type string (idl: DOMString).

func (*HTMLImageElement) SetVspace

func (_this *HTMLImageElement) SetVspace(value uint)

SetVspace setting attribute 'vspace' with type uint (idl: unsigned long).

func (*HTMLImageElement) SetWidth

func (_this *HTMLImageElement) SetWidth(value uint)

SetWidth setting attribute 'width' with type uint (idl: unsigned long).

func (*HTMLImageElement) Sizes

func (_this *HTMLImageElement) Sizes() string

Sizes returning attribute 'sizes' with type string (idl: DOMString).

func (*HTMLImageElement) Src

func (_this *HTMLImageElement) Src() string

Src returning attribute 'src' with type string (idl: USVString).

func (*HTMLImageElement) Srcset

func (_this *HTMLImageElement) Srcset() string

Srcset returning attribute 'srcset' with type string (idl: USVString).

func (*HTMLImageElement) UseMap

func (_this *HTMLImageElement) UseMap() string

UseMap returning attribute 'useMap' with type string (idl: DOMString).

func (*HTMLImageElement) Vspace

func (_this *HTMLImageElement) Vspace() uint

Vspace returning attribute 'vspace' with type uint (idl: unsigned long).

func (*HTMLImageElement) Width

func (_this *HTMLImageElement) Width() uint

Width returning attribute 'width' with type uint (idl: unsigned long).

func (*HTMLImageElement) X

func (_this *HTMLImageElement) X() int

X returning attribute 'x' with type int (idl: long).

func (*HTMLImageElement) Y

func (_this *HTMLImageElement) Y() int

Y returning attribute 'y' with type int (idl: long).

type HTMLInputElement

type HTMLInputElement struct {
	HTMLElement
}

class: HTMLInputElement

func HTMLInputElementFromJS

func HTMLInputElementFromJS(value js.Value) *HTMLInputElement

HTMLInputElementFromJS is casting a js.Value into HTMLInputElement.

func HTMLInputElementFromWrapper

func HTMLInputElementFromWrapper(input core.Wrapper) *HTMLInputElement

HTMLInputElementFromJS is casting from something that holds a js.Value into HTMLInputElement.

func (*HTMLInputElement) Accept

func (_this *HTMLInputElement) Accept() string

Accept returning attribute 'accept' with type string (idl: DOMString).

func (*HTMLInputElement) Align

func (_this *HTMLInputElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLInputElement) Alt

func (_this *HTMLInputElement) Alt() string

Alt returning attribute 'alt' with type string (idl: DOMString).

func (*HTMLInputElement) Autocomplete

func (_this *HTMLInputElement) Autocomplete() string

Autocomplete returning attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLInputElement) Autofocus

func (_this *HTMLInputElement) Autofocus() bool

Autofocus returning attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLInputElement) Capture

func (_this *HTMLInputElement) Capture() string

Capture returning attribute 'capture' with type string (idl: DOMString).

func (*HTMLInputElement) CheckValidity

func (_this *HTMLInputElement) CheckValidity() (_result bool)

func (*HTMLInputElement) Checked

func (_this *HTMLInputElement) Checked() bool

Checked returning attribute 'checked' with type bool (idl: boolean).

func (*HTMLInputElement) DefaultChecked

func (_this *HTMLInputElement) DefaultChecked() bool

DefaultChecked returning attribute 'defaultChecked' with type bool (idl: boolean).

func (*HTMLInputElement) DefaultValue

func (_this *HTMLInputElement) DefaultValue() string

DefaultValue returning attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLInputElement) DirName

func (_this *HTMLInputElement) DirName() string

DirName returning attribute 'dirName' with type string (idl: DOMString).

func (*HTMLInputElement) Disabled

func (_this *HTMLInputElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLInputElement) Files

func (_this *HTMLInputElement) Files() *file.FileList

Files returning attribute 'files' with type file.FileList (idl: FileList).

func (*HTMLInputElement) Form

func (_this *HTMLInputElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLInputElement) FormAction

func (_this *HTMLInputElement) FormAction() string

FormAction returning attribute 'formAction' with type string (idl: USVString).

func (*HTMLInputElement) FormEnctype

func (_this *HTMLInputElement) FormEnctype() string

FormEnctype returning attribute 'formEnctype' with type string (idl: DOMString).

func (*HTMLInputElement) FormMethod

func (_this *HTMLInputElement) FormMethod() string

FormMethod returning attribute 'formMethod' with type string (idl: DOMString).

func (*HTMLInputElement) FormNoValidate

func (_this *HTMLInputElement) FormNoValidate() bool

FormNoValidate returning attribute 'formNoValidate' with type bool (idl: boolean).

func (*HTMLInputElement) FormTarget

func (_this *HTMLInputElement) FormTarget() string

FormTarget returning attribute 'formTarget' with type string (idl: DOMString).

func (*HTMLInputElement) Height

func (_this *HTMLInputElement) Height() uint

Height returning attribute 'height' with type uint (idl: unsigned long).

func (*HTMLInputElement) Indeterminate

func (_this *HTMLInputElement) Indeterminate() bool

Indeterminate returning attribute 'indeterminate' with type bool (idl: boolean).

func (*HTMLInputElement) Labels

func (_this *HTMLInputElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLInputElement) List

func (_this *HTMLInputElement) List() *HTMLElement

List returning attribute 'list' with type HTMLElement (idl: HTMLElement).

func (*HTMLInputElement) Max

func (_this *HTMLInputElement) Max() string

Max returning attribute 'max' with type string (idl: DOMString).

func (*HTMLInputElement) MaxLength

func (_this *HTMLInputElement) MaxLength() int

MaxLength returning attribute 'maxLength' with type int (idl: long).

func (*HTMLInputElement) Min

func (_this *HTMLInputElement) Min() string

Min returning attribute 'min' with type string (idl: DOMString).

func (*HTMLInputElement) MinLength

func (_this *HTMLInputElement) MinLength() int

MinLength returning attribute 'minLength' with type int (idl: long).

func (*HTMLInputElement) Multiple

func (_this *HTMLInputElement) Multiple() bool

Multiple returning attribute 'multiple' with type bool (idl: boolean).

func (*HTMLInputElement) Name

func (_this *HTMLInputElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLInputElement) Pattern

func (_this *HTMLInputElement) Pattern() string

Pattern returning attribute 'pattern' with type string (idl: DOMString).

func (*HTMLInputElement) Placeholder

func (_this *HTMLInputElement) Placeholder() string

Placeholder returning attribute 'placeholder' with type string (idl: DOMString).

func (*HTMLInputElement) ReadOnly

func (_this *HTMLInputElement) ReadOnly() bool

ReadOnly returning attribute 'readOnly' with type bool (idl: boolean).

func (*HTMLInputElement) ReportValidity

func (_this *HTMLInputElement) ReportValidity() (_result bool)

func (*HTMLInputElement) Required

func (_this *HTMLInputElement) Required() bool

Required returning attribute 'required' with type bool (idl: boolean).

func (*HTMLInputElement) Select

func (_this *HTMLInputElement) Select()

func (*HTMLInputElement) SelectionDirection

func (_this *HTMLInputElement) SelectionDirection() *string

SelectionDirection returning attribute 'selectionDirection' with type string (idl: DOMString).

func (*HTMLInputElement) SelectionEnd

func (_this *HTMLInputElement) SelectionEnd() *uint

SelectionEnd returning attribute 'selectionEnd' with type uint (idl: unsigned long).

func (*HTMLInputElement) SelectionStart

func (_this *HTMLInputElement) SelectionStart() *uint

SelectionStart returning attribute 'selectionStart' with type uint (idl: unsigned long).

func (*HTMLInputElement) SetAccept

func (_this *HTMLInputElement) SetAccept(value string)

SetAccept setting attribute 'accept' with type string (idl: DOMString).

func (*HTMLInputElement) SetAlign

func (_this *HTMLInputElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLInputElement) SetAlt

func (_this *HTMLInputElement) SetAlt(value string)

SetAlt setting attribute 'alt' with type string (idl: DOMString).

func (*HTMLInputElement) SetAutocomplete

func (_this *HTMLInputElement) SetAutocomplete(value string)

SetAutocomplete setting attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLInputElement) SetAutofocus

func (_this *HTMLInputElement) SetAutofocus(value bool)

SetAutofocus setting attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLInputElement) SetCapture

func (_this *HTMLInputElement) SetCapture(value string)

SetCapture setting attribute 'capture' with type string (idl: DOMString).

func (*HTMLInputElement) SetChecked

func (_this *HTMLInputElement) SetChecked(value bool)

SetChecked setting attribute 'checked' with type bool (idl: boolean).

func (*HTMLInputElement) SetCustomValidity

func (_this *HTMLInputElement) SetCustomValidity(_error string)

func (*HTMLInputElement) SetDefaultChecked

func (_this *HTMLInputElement) SetDefaultChecked(value bool)

SetDefaultChecked setting attribute 'defaultChecked' with type bool (idl: boolean).

func (*HTMLInputElement) SetDefaultValue

func (_this *HTMLInputElement) SetDefaultValue(value string)

SetDefaultValue setting attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLInputElement) SetDirName

func (_this *HTMLInputElement) SetDirName(value string)

SetDirName setting attribute 'dirName' with type string (idl: DOMString).

func (*HTMLInputElement) SetDisabled

func (_this *HTMLInputElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLInputElement) SetFiles

func (_this *HTMLInputElement) SetFiles(value *file.FileList)

SetFiles setting attribute 'files' with type file.FileList (idl: FileList).

func (*HTMLInputElement) SetFormAction

func (_this *HTMLInputElement) SetFormAction(value string)

SetFormAction setting attribute 'formAction' with type string (idl: USVString).

func (*HTMLInputElement) SetFormEnctype

func (_this *HTMLInputElement) SetFormEnctype(value string)

SetFormEnctype setting attribute 'formEnctype' with type string (idl: DOMString).

func (*HTMLInputElement) SetFormMethod

func (_this *HTMLInputElement) SetFormMethod(value string)

SetFormMethod setting attribute 'formMethod' with type string (idl: DOMString).

func (*HTMLInputElement) SetFormNoValidate

func (_this *HTMLInputElement) SetFormNoValidate(value bool)

SetFormNoValidate setting attribute 'formNoValidate' with type bool (idl: boolean).

func (*HTMLInputElement) SetFormTarget

func (_this *HTMLInputElement) SetFormTarget(value string)

SetFormTarget setting attribute 'formTarget' with type string (idl: DOMString).

func (*HTMLInputElement) SetHeight

func (_this *HTMLInputElement) SetHeight(value uint)

SetHeight setting attribute 'height' with type uint (idl: unsigned long).

func (*HTMLInputElement) SetIndeterminate

func (_this *HTMLInputElement) SetIndeterminate(value bool)

SetIndeterminate setting attribute 'indeterminate' with type bool (idl: boolean).

func (*HTMLInputElement) SetMax

func (_this *HTMLInputElement) SetMax(value string)

SetMax setting attribute 'max' with type string (idl: DOMString).

func (*HTMLInputElement) SetMaxLength

func (_this *HTMLInputElement) SetMaxLength(value int)

SetMaxLength setting attribute 'maxLength' with type int (idl: long).

func (*HTMLInputElement) SetMin

func (_this *HTMLInputElement) SetMin(value string)

SetMin setting attribute 'min' with type string (idl: DOMString).

func (*HTMLInputElement) SetMinLength

func (_this *HTMLInputElement) SetMinLength(value int)

SetMinLength setting attribute 'minLength' with type int (idl: long).

func (*HTMLInputElement) SetMultiple

func (_this *HTMLInputElement) SetMultiple(value bool)

SetMultiple setting attribute 'multiple' with type bool (idl: boolean).

func (*HTMLInputElement) SetName

func (_this *HTMLInputElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLInputElement) SetPattern

func (_this *HTMLInputElement) SetPattern(value string)

SetPattern setting attribute 'pattern' with type string (idl: DOMString).

func (*HTMLInputElement) SetPlaceholder

func (_this *HTMLInputElement) SetPlaceholder(value string)

SetPlaceholder setting attribute 'placeholder' with type string (idl: DOMString).

func (*HTMLInputElement) SetRangeText

func (_this *HTMLInputElement) SetRangeText(replacement string)

func (*HTMLInputElement) SetRangeText2

func (_this *HTMLInputElement) SetRangeText2(replacement string, start uint, end uint, selectionMode *SelectionMode)

func (*HTMLInputElement) SetReadOnly

func (_this *HTMLInputElement) SetReadOnly(value bool)

SetReadOnly setting attribute 'readOnly' with type bool (idl: boolean).

func (*HTMLInputElement) SetRequired

func (_this *HTMLInputElement) SetRequired(value bool)

SetRequired setting attribute 'required' with type bool (idl: boolean).

func (*HTMLInputElement) SetSelectionDirection

func (_this *HTMLInputElement) SetSelectionDirection(value *string)

SetSelectionDirection setting attribute 'selectionDirection' with type string (idl: DOMString).

func (*HTMLInputElement) SetSelectionEnd

func (_this *HTMLInputElement) SetSelectionEnd(value *uint)

SetSelectionEnd setting attribute 'selectionEnd' with type uint (idl: unsigned long).

func (*HTMLInputElement) SetSelectionRange

func (_this *HTMLInputElement) SetSelectionRange(start uint, end uint, direction *string)

func (*HTMLInputElement) SetSelectionStart

func (_this *HTMLInputElement) SetSelectionStart(value *uint)

SetSelectionStart setting attribute 'selectionStart' with type uint (idl: unsigned long).

func (*HTMLInputElement) SetSize

func (_this *HTMLInputElement) SetSize(value uint)

SetSize setting attribute 'size' with type uint (idl: unsigned long).

func (*HTMLInputElement) SetSrc

func (_this *HTMLInputElement) SetSrc(value string)

SetSrc setting attribute 'src' with type string (idl: USVString).

func (*HTMLInputElement) SetStep

func (_this *HTMLInputElement) SetStep(value string)

SetStep setting attribute 'step' with type string (idl: DOMString).

func (*HTMLInputElement) SetType

func (_this *HTMLInputElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLInputElement) SetUseMap

func (_this *HTMLInputElement) SetUseMap(value string)

SetUseMap setting attribute 'useMap' with type string (idl: DOMString).

func (*HTMLInputElement) SetValue

func (_this *HTMLInputElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLInputElement) SetValueAsDate

func (_this *HTMLInputElement) SetValueAsDate(value *javascript.Object)

SetValueAsDate setting attribute 'valueAsDate' with type javascript.Object (idl: object).

func (*HTMLInputElement) SetValueAsNumber

func (_this *HTMLInputElement) SetValueAsNumber(value float64)

SetValueAsNumber setting attribute 'valueAsNumber' with type float64 (idl: unrestricted double).

func (*HTMLInputElement) SetWebkitdirectory

func (_this *HTMLInputElement) SetWebkitdirectory(value bool)

SetWebkitdirectory setting attribute 'webkitdirectory' with type bool (idl: boolean).

func (*HTMLInputElement) SetWidth

func (_this *HTMLInputElement) SetWidth(value uint)

SetWidth setting attribute 'width' with type uint (idl: unsigned long).

func (*HTMLInputElement) Size

func (_this *HTMLInputElement) Size() uint

Size returning attribute 'size' with type uint (idl: unsigned long).

func (*HTMLInputElement) Src

func (_this *HTMLInputElement) Src() string

Src returning attribute 'src' with type string (idl: USVString).

func (*HTMLInputElement) Step

func (_this *HTMLInputElement) Step() string

Step returning attribute 'step' with type string (idl: DOMString).

func (*HTMLInputElement) StepDown

func (_this *HTMLInputElement) StepDown(n *int)

func (*HTMLInputElement) StepUp

func (_this *HTMLInputElement) StepUp(n *int)

func (*HTMLInputElement) Type

func (_this *HTMLInputElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLInputElement) UseMap

func (_this *HTMLInputElement) UseMap() string

UseMap returning attribute 'useMap' with type string (idl: DOMString).

func (*HTMLInputElement) ValidationMessage

func (_this *HTMLInputElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLInputElement) Validity

func (_this *HTMLInputElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLInputElement) Value

func (_this *HTMLInputElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLInputElement) ValueAsDate

func (_this *HTMLInputElement) ValueAsDate() *javascript.Object

ValueAsDate returning attribute 'valueAsDate' with type javascript.Object (idl: object).

func (*HTMLInputElement) ValueAsNumber

func (_this *HTMLInputElement) ValueAsNumber() float64

ValueAsNumber returning attribute 'valueAsNumber' with type float64 (idl: unrestricted double).

func (*HTMLInputElement) WebkitEntries

func (_this *HTMLInputElement) WebkitEntries() *javascript.FrozenArray

WebkitEntries returning attribute 'webkitEntries' with type javascript.FrozenArray (idl: FrozenArray).

func (*HTMLInputElement) Webkitdirectory

func (_this *HTMLInputElement) Webkitdirectory() bool

Webkitdirectory returning attribute 'webkitdirectory' with type bool (idl: boolean).

func (*HTMLInputElement) Width

func (_this *HTMLInputElement) Width() uint

Width returning attribute 'width' with type uint (idl: unsigned long).

func (*HTMLInputElement) WillValidate

func (_this *HTMLInputElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

type HTMLLIElement

type HTMLLIElement struct {
	HTMLElement
}

class: HTMLLIElement

func HTMLLIElementFromJS

func HTMLLIElementFromJS(value js.Value) *HTMLLIElement

HTMLLIElementFromJS is casting a js.Value into HTMLLIElement.

func HTMLLIElementFromWrapper

func HTMLLIElementFromWrapper(input core.Wrapper) *HTMLLIElement

HTMLLIElementFromJS is casting from something that holds a js.Value into HTMLLIElement.

func (*HTMLLIElement) SetType

func (_this *HTMLLIElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLLIElement) SetValue

func (_this *HTMLLIElement) SetValue(value int)

SetValue setting attribute 'value' with type int (idl: long).

func (*HTMLLIElement) Type

func (_this *HTMLLIElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLLIElement) Value

func (_this *HTMLLIElement) Value() int

Value returning attribute 'value' with type int (idl: long).

type HTMLLabelElement

type HTMLLabelElement struct {
	HTMLElement
}

class: HTMLLabelElement

func HTMLLabelElementFromJS

func HTMLLabelElementFromJS(value js.Value) *HTMLLabelElement

HTMLLabelElementFromJS is casting a js.Value into HTMLLabelElement.

func HTMLLabelElementFromWrapper

func HTMLLabelElementFromWrapper(input core.Wrapper) *HTMLLabelElement

HTMLLabelElementFromJS is casting from something that holds a js.Value into HTMLLabelElement.

func (*HTMLLabelElement) Control

func (_this *HTMLLabelElement) Control() *HTMLElement

Control returning attribute 'control' with type HTMLElement (idl: HTMLElement).

func (*HTMLLabelElement) Form

func (_this *HTMLLabelElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLLabelElement) HtmlFor

func (_this *HTMLLabelElement) HtmlFor() string

HtmlFor returning attribute 'htmlFor' with type string (idl: DOMString).

func (*HTMLLabelElement) SetHtmlFor

func (_this *HTMLLabelElement) SetHtmlFor(value string)

SetHtmlFor setting attribute 'htmlFor' with type string (idl: DOMString).

type HTMLLegendElement

type HTMLLegendElement struct {
	HTMLElement
}

class: HTMLLegendElement

func HTMLLegendElementFromJS

func HTMLLegendElementFromJS(value js.Value) *HTMLLegendElement

HTMLLegendElementFromJS is casting a js.Value into HTMLLegendElement.

func HTMLLegendElementFromWrapper

func HTMLLegendElementFromWrapper(input core.Wrapper) *HTMLLegendElement

HTMLLegendElementFromJS is casting from something that holds a js.Value into HTMLLegendElement.

func (*HTMLLegendElement) Align

func (_this *HTMLLegendElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLLegendElement) Form

func (_this *HTMLLegendElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLLegendElement) SetAlign

func (_this *HTMLLegendElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

type HTMLLinkElement

type HTMLLinkElement struct {
	HTMLElement
}

class: HTMLLinkElement

func HTMLLinkElementFromJS

func HTMLLinkElementFromJS(value js.Value) *HTMLLinkElement

HTMLLinkElementFromJS is casting a js.Value into HTMLLinkElement.

func HTMLLinkElementFromWrapper

func HTMLLinkElementFromWrapper(input core.Wrapper) *HTMLLinkElement

HTMLLinkElementFromJS is casting from something that holds a js.Value into HTMLLinkElement.

func (*HTMLLinkElement) As

func (_this *HTMLLinkElement) As() string

As returning attribute 'as' with type string (idl: DOMString).

func (*HTMLLinkElement) Charset

func (_this *HTMLLinkElement) Charset() string

Charset returning attribute 'charset' with type string (idl: DOMString).

func (*HTMLLinkElement) CrossOrigin

func (_this *HTMLLinkElement) CrossOrigin() *string

CrossOrigin returning attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLLinkElement) Href

func (_this *HTMLLinkElement) Href() string

Href returning attribute 'href' with type string (idl: USVString).

func (*HTMLLinkElement) Hreflang

func (_this *HTMLLinkElement) Hreflang() string

Hreflang returning attribute 'hreflang' with type string (idl: DOMString).

func (*HTMLLinkElement) Integrity

func (_this *HTMLLinkElement) Integrity() string

Integrity returning attribute 'integrity' with type string (idl: DOMString).

func (*HTMLLinkElement) Media

func (_this *HTMLLinkElement) Media() string

Media returning attribute 'media' with type string (idl: DOMString).

func (*HTMLLinkElement) ReferrerPolicy

func (_this *HTMLLinkElement) ReferrerPolicy() string

ReferrerPolicy returning attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLLinkElement) Rel

func (_this *HTMLLinkElement) Rel() string

Rel returning attribute 'rel' with type string (idl: DOMString).

func (*HTMLLinkElement) RelList

func (_this *HTMLLinkElement) RelList() *domcore.DOMTokenList

RelList returning attribute 'relList' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLLinkElement) Rev

func (_this *HTMLLinkElement) Rev() string

Rev returning attribute 'rev' with type string (idl: DOMString).

func (*HTMLLinkElement) SetAs

func (_this *HTMLLinkElement) SetAs(value string)

SetAs setting attribute 'as' with type string (idl: DOMString).

func (*HTMLLinkElement) SetCharset

func (_this *HTMLLinkElement) SetCharset(value string)

SetCharset setting attribute 'charset' with type string (idl: DOMString).

func (*HTMLLinkElement) SetCrossOrigin

func (_this *HTMLLinkElement) SetCrossOrigin(value *string)

SetCrossOrigin setting attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLLinkElement) SetHref

func (_this *HTMLLinkElement) SetHref(value string)

SetHref setting attribute 'href' with type string (idl: USVString).

func (*HTMLLinkElement) SetHreflang

func (_this *HTMLLinkElement) SetHreflang(value string)

SetHreflang setting attribute 'hreflang' with type string (idl: DOMString).

func (*HTMLLinkElement) SetIntegrity

func (_this *HTMLLinkElement) SetIntegrity(value string)

SetIntegrity setting attribute 'integrity' with type string (idl: DOMString).

func (*HTMLLinkElement) SetMedia

func (_this *HTMLLinkElement) SetMedia(value string)

SetMedia setting attribute 'media' with type string (idl: DOMString).

func (*HTMLLinkElement) SetReferrerPolicy

func (_this *HTMLLinkElement) SetReferrerPolicy(value string)

SetReferrerPolicy setting attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLLinkElement) SetRel

func (_this *HTMLLinkElement) SetRel(value string)

SetRel setting attribute 'rel' with type string (idl: DOMString).

func (*HTMLLinkElement) SetRev

func (_this *HTMLLinkElement) SetRev(value string)

SetRev setting attribute 'rev' with type string (idl: DOMString).

func (*HTMLLinkElement) SetTarget

func (_this *HTMLLinkElement) SetTarget(value string)

SetTarget setting attribute 'target' with type string (idl: DOMString).

func (*HTMLLinkElement) SetType

func (_this *HTMLLinkElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLLinkElement) Sheet

func (_this *HTMLLinkElement) Sheet() *cssom.CSSStyleSheet

Sheet returning attribute 'sheet' with type cssom.CSSStyleSheet (idl: CSSStyleSheet).

func (*HTMLLinkElement) Sizes

func (_this *HTMLLinkElement) Sizes() *domcore.DOMTokenList

Sizes returning attribute 'sizes' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLLinkElement) Target

func (_this *HTMLLinkElement) Target() string

Target returning attribute 'target' with type string (idl: DOMString).

func (*HTMLLinkElement) Type

func (_this *HTMLLinkElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLMapElement

type HTMLMapElement struct {
	HTMLElement
}

class: HTMLMapElement

func HTMLMapElementFromJS

func HTMLMapElementFromJS(value js.Value) *HTMLMapElement

HTMLMapElementFromJS is casting a js.Value into HTMLMapElement.

func HTMLMapElementFromWrapper

func HTMLMapElementFromWrapper(input core.Wrapper) *HTMLMapElement

HTMLMapElementFromJS is casting from something that holds a js.Value into HTMLMapElement.

func (*HTMLMapElement) Areas

func (_this *HTMLMapElement) Areas() *dom.HTMLCollection

Areas returning attribute 'areas' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLMapElement) Name

func (_this *HTMLMapElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLMapElement) SetName

func (_this *HTMLMapElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

type HTMLMarqueeElement

type HTMLMarqueeElement struct {
	HTMLElement
}

class: HTMLMarqueeElement

func HTMLMarqueeElementFromJS

func HTMLMarqueeElementFromJS(value js.Value) *HTMLMarqueeElement

HTMLMarqueeElementFromJS is casting a js.Value into HTMLMarqueeElement.

func HTMLMarqueeElementFromWrapper

func HTMLMarqueeElementFromWrapper(input core.Wrapper) *HTMLMarqueeElement

HTMLMarqueeElementFromJS is casting from something that holds a js.Value into HTMLMarqueeElement.

func (*HTMLMarqueeElement) AddEventBounce

func (_this *HTMLMarqueeElement) AddEventBounce(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

AddBounce is adding doing AddEventListener for 'Bounce' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) AddEventFinish

func (_this *HTMLMarqueeElement) AddEventFinish(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

AddFinish is adding doing AddEventListener for 'Finish' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) AddEventStart

func (_this *HTMLMarqueeElement) AddEventStart(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

AddStart is adding doing AddEventListener for 'Start' on target. This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) Behavior

func (_this *HTMLMarqueeElement) Behavior() string

Behavior returning attribute 'behavior' with type string (idl: DOMString).

func (*HTMLMarqueeElement) BgColor

func (_this *HTMLMarqueeElement) BgColor() string

BgColor returning attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLMarqueeElement) Direction

func (_this *HTMLMarqueeElement) Direction() string

Direction returning attribute 'direction' with type string (idl: DOMString).

func (*HTMLMarqueeElement) Height

func (_this *HTMLMarqueeElement) Height() string

Height returning attribute 'height' with type string (idl: DOMString).

func (*HTMLMarqueeElement) Hspace

func (_this *HTMLMarqueeElement) Hspace() uint

Hspace returning attribute 'hspace' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) Loop

func (_this *HTMLMarqueeElement) Loop() int

Loop returning attribute 'loop' with type int (idl: long).

func (*HTMLMarqueeElement) OnBounce

func (_this *HTMLMarqueeElement) OnBounce() domcore.EventHandlerFunc

OnBounce returning attribute 'onbounce' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLMarqueeElement) OnFinish

func (_this *HTMLMarqueeElement) OnFinish() domcore.EventHandlerFunc

OnFinish returning attribute 'onfinish' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLMarqueeElement) OnStart

func (_this *HTMLMarqueeElement) OnStart() domcore.EventHandlerFunc

OnStart returning attribute 'onstart' with type domcore.EventHandler (idl: EventHandlerNonNull).

func (*HTMLMarqueeElement) ScrollAmount

func (_this *HTMLMarqueeElement) ScrollAmount() uint

ScrollAmount returning attribute 'scrollAmount' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) ScrollDelay

func (_this *HTMLMarqueeElement) ScrollDelay() uint

ScrollDelay returning attribute 'scrollDelay' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) SetBehavior

func (_this *HTMLMarqueeElement) SetBehavior(value string)

SetBehavior setting attribute 'behavior' with type string (idl: DOMString).

func (*HTMLMarqueeElement) SetBgColor

func (_this *HTMLMarqueeElement) SetBgColor(value string)

SetBgColor setting attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLMarqueeElement) SetDirection

func (_this *HTMLMarqueeElement) SetDirection(value string)

SetDirection setting attribute 'direction' with type string (idl: DOMString).

func (*HTMLMarqueeElement) SetHeight

func (_this *HTMLMarqueeElement) SetHeight(value string)

SetHeight setting attribute 'height' with type string (idl: DOMString).

func (*HTMLMarqueeElement) SetHspace

func (_this *HTMLMarqueeElement) SetHspace(value uint)

SetHspace setting attribute 'hspace' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) SetLoop

func (_this *HTMLMarqueeElement) SetLoop(value int)

SetLoop setting attribute 'loop' with type int (idl: long).

func (*HTMLMarqueeElement) SetOnBounce

func (_this *HTMLMarqueeElement) SetOnBounce(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

SetOnBounce is assigning a function to 'onbounce'. This This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) SetOnFinish

func (_this *HTMLMarqueeElement) SetOnFinish(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

SetOnFinish is assigning a function to 'onfinish'. This This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) SetOnStart

func (_this *HTMLMarqueeElement) SetOnStart(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func

SetOnStart is assigning a function to 'onstart'. This This method is returning allocated javascript function that need to be released.

func (*HTMLMarqueeElement) SetScrollAmount

func (_this *HTMLMarqueeElement) SetScrollAmount(value uint)

SetScrollAmount setting attribute 'scrollAmount' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) SetScrollDelay

func (_this *HTMLMarqueeElement) SetScrollDelay(value uint)

SetScrollDelay setting attribute 'scrollDelay' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) SetTrueSpeed

func (_this *HTMLMarqueeElement) SetTrueSpeed(value bool)

SetTrueSpeed setting attribute 'trueSpeed' with type bool (idl: boolean).

func (*HTMLMarqueeElement) SetVspace

func (_this *HTMLMarqueeElement) SetVspace(value uint)

SetVspace setting attribute 'vspace' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) SetWidth

func (_this *HTMLMarqueeElement) SetWidth(value string)

SetWidth setting attribute 'width' with type string (idl: DOMString).

func (*HTMLMarqueeElement) Start

func (_this *HTMLMarqueeElement) Start()

func (*HTMLMarqueeElement) Stop

func (_this *HTMLMarqueeElement) Stop()

func (*HTMLMarqueeElement) TrueSpeed

func (_this *HTMLMarqueeElement) TrueSpeed() bool

TrueSpeed returning attribute 'trueSpeed' with type bool (idl: boolean).

func (*HTMLMarqueeElement) Vspace

func (_this *HTMLMarqueeElement) Vspace() uint

Vspace returning attribute 'vspace' with type uint (idl: unsigned long).

func (*HTMLMarqueeElement) Width

func (_this *HTMLMarqueeElement) Width() string

Width returning attribute 'width' with type string (idl: DOMString).

type HTMLMenuElement

type HTMLMenuElement struct {
	HTMLElement
}

class: HTMLMenuElement

func HTMLMenuElementFromJS

func HTMLMenuElementFromJS(value js.Value) *HTMLMenuElement

HTMLMenuElementFromJS is casting a js.Value into HTMLMenuElement.

func HTMLMenuElementFromWrapper

func HTMLMenuElementFromWrapper(input core.Wrapper) *HTMLMenuElement

HTMLMenuElementFromJS is casting from something that holds a js.Value into HTMLMenuElement.

func (*HTMLMenuElement) Compact

func (_this *HTMLMenuElement) Compact() bool

Compact returning attribute 'compact' with type bool (idl: boolean).

func (*HTMLMenuElement) SetCompact

func (_this *HTMLMenuElement) SetCompact(value bool)

SetCompact setting attribute 'compact' with type bool (idl: boolean).

type HTMLMetaElement

type HTMLMetaElement struct {
	HTMLElement
}

class: HTMLMetaElement

func HTMLMetaElementFromJS

func HTMLMetaElementFromJS(value js.Value) *HTMLMetaElement

HTMLMetaElementFromJS is casting a js.Value into HTMLMetaElement.

func HTMLMetaElementFromWrapper

func HTMLMetaElementFromWrapper(input core.Wrapper) *HTMLMetaElement

HTMLMetaElementFromJS is casting from something that holds a js.Value into HTMLMetaElement.

func (*HTMLMetaElement) Content

func (_this *HTMLMetaElement) Content() string

Content returning attribute 'content' with type string (idl: DOMString).

func (*HTMLMetaElement) HttpEquiv

func (_this *HTMLMetaElement) HttpEquiv() string

HttpEquiv returning attribute 'httpEquiv' with type string (idl: DOMString).

func (*HTMLMetaElement) Name

func (_this *HTMLMetaElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLMetaElement) Scheme

func (_this *HTMLMetaElement) Scheme() string

Scheme returning attribute 'scheme' with type string (idl: DOMString).

func (*HTMLMetaElement) SetContent

func (_this *HTMLMetaElement) SetContent(value string)

SetContent setting attribute 'content' with type string (idl: DOMString).

func (*HTMLMetaElement) SetHttpEquiv

func (_this *HTMLMetaElement) SetHttpEquiv(value string)

SetHttpEquiv setting attribute 'httpEquiv' with type string (idl: DOMString).

func (*HTMLMetaElement) SetName

func (_this *HTMLMetaElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLMetaElement) SetScheme

func (_this *HTMLMetaElement) SetScheme(value string)

SetScheme setting attribute 'scheme' with type string (idl: DOMString).

type HTMLMeterElement

type HTMLMeterElement struct {
	HTMLElement
}

class: HTMLMeterElement

func HTMLMeterElementFromJS

func HTMLMeterElementFromJS(value js.Value) *HTMLMeterElement

HTMLMeterElementFromJS is casting a js.Value into HTMLMeterElement.

func HTMLMeterElementFromWrapper

func HTMLMeterElementFromWrapper(input core.Wrapper) *HTMLMeterElement

HTMLMeterElementFromJS is casting from something that holds a js.Value into HTMLMeterElement.

func (*HTMLMeterElement) High

func (_this *HTMLMeterElement) High() float64

High returning attribute 'high' with type float64 (idl: double).

func (*HTMLMeterElement) Labels

func (_this *HTMLMeterElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLMeterElement) Low

func (_this *HTMLMeterElement) Low() float64

Low returning attribute 'low' with type float64 (idl: double).

func (*HTMLMeterElement) Max

func (_this *HTMLMeterElement) Max() float64

Max returning attribute 'max' with type float64 (idl: double).

func (*HTMLMeterElement) Min

func (_this *HTMLMeterElement) Min() float64

Min returning attribute 'min' with type float64 (idl: double).

func (*HTMLMeterElement) Optimum

func (_this *HTMLMeterElement) Optimum() float64

Optimum returning attribute 'optimum' with type float64 (idl: double).

func (*HTMLMeterElement) SetHigh

func (_this *HTMLMeterElement) SetHigh(value float64)

SetHigh setting attribute 'high' with type float64 (idl: double).

func (*HTMLMeterElement) SetLow

func (_this *HTMLMeterElement) SetLow(value float64)

SetLow setting attribute 'low' with type float64 (idl: double).

func (*HTMLMeterElement) SetMax

func (_this *HTMLMeterElement) SetMax(value float64)

SetMax setting attribute 'max' with type float64 (idl: double).

func (*HTMLMeterElement) SetMin

func (_this *HTMLMeterElement) SetMin(value float64)

SetMin setting attribute 'min' with type float64 (idl: double).

func (*HTMLMeterElement) SetOptimum

func (_this *HTMLMeterElement) SetOptimum(value float64)

SetOptimum setting attribute 'optimum' with type float64 (idl: double).

func (*HTMLMeterElement) SetValue

func (_this *HTMLMeterElement) SetValue(value float64)

SetValue setting attribute 'value' with type float64 (idl: double).

func (*HTMLMeterElement) Value

func (_this *HTMLMeterElement) Value() float64

Value returning attribute 'value' with type float64 (idl: double).

type HTMLModElement

type HTMLModElement struct {
	HTMLElement
}

class: HTMLModElement

func HTMLModElementFromJS

func HTMLModElementFromJS(value js.Value) *HTMLModElement

HTMLModElementFromJS is casting a js.Value into HTMLModElement.

func HTMLModElementFromWrapper

func HTMLModElementFromWrapper(input core.Wrapper) *HTMLModElement

HTMLModElementFromJS is casting from something that holds a js.Value into HTMLModElement.

func (*HTMLModElement) Cite

func (_this *HTMLModElement) Cite() string

Cite returning attribute 'cite' with type string (idl: USVString).

func (*HTMLModElement) DateTime

func (_this *HTMLModElement) DateTime() string

DateTime returning attribute 'dateTime' with type string (idl: DOMString).

func (*HTMLModElement) SetCite

func (_this *HTMLModElement) SetCite(value string)

SetCite setting attribute 'cite' with type string (idl: USVString).

func (*HTMLModElement) SetDateTime

func (_this *HTMLModElement) SetDateTime(value string)

SetDateTime setting attribute 'dateTime' with type string (idl: DOMString).

type HTMLOListElement

type HTMLOListElement struct {
	HTMLElement
}

class: HTMLOListElement

func HTMLOListElementFromJS

func HTMLOListElementFromJS(value js.Value) *HTMLOListElement

HTMLOListElementFromJS is casting a js.Value into HTMLOListElement.

func HTMLOListElementFromWrapper

func HTMLOListElementFromWrapper(input core.Wrapper) *HTMLOListElement

HTMLOListElementFromJS is casting from something that holds a js.Value into HTMLOListElement.

func (*HTMLOListElement) Compact

func (_this *HTMLOListElement) Compact() bool

Compact returning attribute 'compact' with type bool (idl: boolean).

func (*HTMLOListElement) Reversed

func (_this *HTMLOListElement) Reversed() bool

Reversed returning attribute 'reversed' with type bool (idl: boolean).

func (*HTMLOListElement) SetCompact

func (_this *HTMLOListElement) SetCompact(value bool)

SetCompact setting attribute 'compact' with type bool (idl: boolean).

func (*HTMLOListElement) SetReversed

func (_this *HTMLOListElement) SetReversed(value bool)

SetReversed setting attribute 'reversed' with type bool (idl: boolean).

func (*HTMLOListElement) SetStart

func (_this *HTMLOListElement) SetStart(value int)

SetStart setting attribute 'start' with type int (idl: long).

func (*HTMLOListElement) SetType

func (_this *HTMLOListElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLOListElement) Start

func (_this *HTMLOListElement) Start() int

Start returning attribute 'start' with type int (idl: long).

func (*HTMLOListElement) Type

func (_this *HTMLOListElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLOptGroupElement

type HTMLOptGroupElement struct {
	HTMLElement
}

class: HTMLOptGroupElement

func HTMLOptGroupElementFromJS

func HTMLOptGroupElementFromJS(value js.Value) *HTMLOptGroupElement

HTMLOptGroupElementFromJS is casting a js.Value into HTMLOptGroupElement.

func HTMLOptGroupElementFromWrapper

func HTMLOptGroupElementFromWrapper(input core.Wrapper) *HTMLOptGroupElement

HTMLOptGroupElementFromJS is casting from something that holds a js.Value into HTMLOptGroupElement.

func (*HTMLOptGroupElement) Disabled

func (_this *HTMLOptGroupElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLOptGroupElement) Label

func (_this *HTMLOptGroupElement) Label() string

Label returning attribute 'label' with type string (idl: DOMString).

func (*HTMLOptGroupElement) SetDisabled

func (_this *HTMLOptGroupElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLOptGroupElement) SetLabel

func (_this *HTMLOptGroupElement) SetLabel(value string)

SetLabel setting attribute 'label' with type string (idl: DOMString).

type HTMLOptionElement

type HTMLOptionElement struct {
	HTMLElement
}

class: HTMLOptionElement

func HTMLOptionElementFromJS

func HTMLOptionElementFromJS(value js.Value) *HTMLOptionElement

HTMLOptionElementFromJS is casting a js.Value into HTMLOptionElement.

func HTMLOptionElementFromWrapper

func HTMLOptionElementFromWrapper(input core.Wrapper) *HTMLOptionElement

HTMLOptionElementFromJS is casting from something that holds a js.Value into HTMLOptionElement.

func (*HTMLOptionElement) DefaultSelected

func (_this *HTMLOptionElement) DefaultSelected() bool

DefaultSelected returning attribute 'defaultSelected' with type bool (idl: boolean).

func (*HTMLOptionElement) Disabled

func (_this *HTMLOptionElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLOptionElement) Form

func (_this *HTMLOptionElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLOptionElement) Index

func (_this *HTMLOptionElement) Index() int

Index returning attribute 'index' with type int (idl: long).

func (*HTMLOptionElement) Label

func (_this *HTMLOptionElement) Label() string

Label returning attribute 'label' with type string (idl: DOMString).

func (*HTMLOptionElement) Selected

func (_this *HTMLOptionElement) Selected() bool

Selected returning attribute 'selected' with type bool (idl: boolean).

func (*HTMLOptionElement) SetDefaultSelected

func (_this *HTMLOptionElement) SetDefaultSelected(value bool)

SetDefaultSelected setting attribute 'defaultSelected' with type bool (idl: boolean).

func (*HTMLOptionElement) SetDisabled

func (_this *HTMLOptionElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLOptionElement) SetLabel

func (_this *HTMLOptionElement) SetLabel(value string)

SetLabel setting attribute 'label' with type string (idl: DOMString).

func (*HTMLOptionElement) SetSelected

func (_this *HTMLOptionElement) SetSelected(value bool)

SetSelected setting attribute 'selected' with type bool (idl: boolean).

func (*HTMLOptionElement) SetText

func (_this *HTMLOptionElement) SetText(value string)

SetText setting attribute 'text' with type string (idl: DOMString).

func (*HTMLOptionElement) SetValue

func (_this *HTMLOptionElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLOptionElement) Text

func (_this *HTMLOptionElement) Text() string

Text returning attribute 'text' with type string (idl: DOMString).

func (*HTMLOptionElement) Value

func (_this *HTMLOptionElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

type HTMLOptionsCollection

type HTMLOptionsCollection struct {
	dom.HTMLCollection
}

class: HTMLOptionsCollection

func HTMLOptionsCollectionFromJS

func HTMLOptionsCollectionFromJS(value js.Value) *HTMLOptionsCollection

HTMLOptionsCollectionFromJS is casting a js.Value into HTMLOptionsCollection.

func HTMLOptionsCollectionFromWrapper

func HTMLOptionsCollectionFromWrapper(input core.Wrapper) *HTMLOptionsCollection

HTMLOptionsCollectionFromJS is casting from something that holds a js.Value into HTMLOptionsCollection.

func (*HTMLOptionsCollection) Add

func (_this *HTMLOptionsCollection) Add(element *Union, before *Union)

func (*HTMLOptionsCollection) Length

func (_this *HTMLOptionsCollection) Length() uint

Length returning attribute 'length' with type uint (idl: unsigned long).

func (*HTMLOptionsCollection) Remove

func (_this *HTMLOptionsCollection) Remove(index int)

func (*HTMLOptionsCollection) SelectedIndex

func (_this *HTMLOptionsCollection) SelectedIndex() int

SelectedIndex returning attribute 'selectedIndex' with type int (idl: long).

func (*HTMLOptionsCollection) SetIndex

func (_this *HTMLOptionsCollection) SetIndex(index uint, option *HTMLOptionElement)

func (*HTMLOptionsCollection) SetLength

func (_this *HTMLOptionsCollection) SetLength(value uint)

SetLength setting attribute 'length' with type uint (idl: unsigned long).

func (*HTMLOptionsCollection) SetSelectedIndex

func (_this *HTMLOptionsCollection) SetSelectedIndex(value int)

SetSelectedIndex setting attribute 'selectedIndex' with type int (idl: long).

type HTMLOutputElement

type HTMLOutputElement struct {
	HTMLElement
}

class: HTMLOutputElement

func HTMLOutputElementFromJS

func HTMLOutputElementFromJS(value js.Value) *HTMLOutputElement

HTMLOutputElementFromJS is casting a js.Value into HTMLOutputElement.

func HTMLOutputElementFromWrapper

func HTMLOutputElementFromWrapper(input core.Wrapper) *HTMLOutputElement

HTMLOutputElementFromJS is casting from something that holds a js.Value into HTMLOutputElement.

func (*HTMLOutputElement) CheckValidity

func (_this *HTMLOutputElement) CheckValidity() (_result bool)

func (*HTMLOutputElement) DefaultValue

func (_this *HTMLOutputElement) DefaultValue() string

DefaultValue returning attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLOutputElement) Form

func (_this *HTMLOutputElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLOutputElement) HtmlFor

func (_this *HTMLOutputElement) HtmlFor() *domcore.DOMTokenList

HtmlFor returning attribute 'htmlFor' with type domcore.DOMTokenList (idl: DOMTokenList).

func (*HTMLOutputElement) Labels

func (_this *HTMLOutputElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLOutputElement) Name

func (_this *HTMLOutputElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLOutputElement) ReportValidity

func (_this *HTMLOutputElement) ReportValidity() (_result bool)

func (*HTMLOutputElement) SetCustomValidity

func (_this *HTMLOutputElement) SetCustomValidity(_error string)

func (*HTMLOutputElement) SetDefaultValue

func (_this *HTMLOutputElement) SetDefaultValue(value string)

SetDefaultValue setting attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLOutputElement) SetName

func (_this *HTMLOutputElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLOutputElement) SetValue

func (_this *HTMLOutputElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLOutputElement) Type

func (_this *HTMLOutputElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLOutputElement) ValidationMessage

func (_this *HTMLOutputElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLOutputElement) Validity

func (_this *HTMLOutputElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLOutputElement) Value

func (_this *HTMLOutputElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLOutputElement) WillValidate

func (_this *HTMLOutputElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

type HTMLParagraphElement

type HTMLParagraphElement struct {
	HTMLElement
}

class: HTMLParagraphElement

func HTMLParagraphElementFromJS

func HTMLParagraphElementFromJS(value js.Value) *HTMLParagraphElement

HTMLParagraphElementFromJS is casting a js.Value into HTMLParagraphElement.

func HTMLParagraphElementFromWrapper

func HTMLParagraphElementFromWrapper(input core.Wrapper) *HTMLParagraphElement

HTMLParagraphElementFromJS is casting from something that holds a js.Value into HTMLParagraphElement.

func (*HTMLParagraphElement) Align

func (_this *HTMLParagraphElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLParagraphElement) SetAlign

func (_this *HTMLParagraphElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

type HTMLParamElement

type HTMLParamElement struct {
	HTMLElement
}

class: HTMLParamElement

func HTMLParamElementFromJS

func HTMLParamElementFromJS(value js.Value) *HTMLParamElement

HTMLParamElementFromJS is casting a js.Value into HTMLParamElement.

func HTMLParamElementFromWrapper

func HTMLParamElementFromWrapper(input core.Wrapper) *HTMLParamElement

HTMLParamElementFromJS is casting from something that holds a js.Value into HTMLParamElement.

func (*HTMLParamElement) Name

func (_this *HTMLParamElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLParamElement) SetName

func (_this *HTMLParamElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLParamElement) SetType

func (_this *HTMLParamElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLParamElement) SetValue

func (_this *HTMLParamElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLParamElement) SetValueType

func (_this *HTMLParamElement) SetValueType(value string)

SetValueType setting attribute 'valueType' with type string (idl: DOMString).

func (*HTMLParamElement) Type

func (_this *HTMLParamElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLParamElement) Value

func (_this *HTMLParamElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLParamElement) ValueType

func (_this *HTMLParamElement) ValueType() string

ValueType returning attribute 'valueType' with type string (idl: DOMString).

type HTMLPictureElement

type HTMLPictureElement struct {
	HTMLElement
}

class: HTMLPictureElement

func HTMLPictureElementFromJS

func HTMLPictureElementFromJS(value js.Value) *HTMLPictureElement

HTMLPictureElementFromJS is casting a js.Value into HTMLPictureElement.

func HTMLPictureElementFromWrapper

func HTMLPictureElementFromWrapper(input core.Wrapper) *HTMLPictureElement

HTMLPictureElementFromJS is casting from something that holds a js.Value into HTMLPictureElement.

type HTMLPreElement

type HTMLPreElement struct {
	HTMLElement
}

class: HTMLPreElement

func HTMLPreElementFromJS

func HTMLPreElementFromJS(value js.Value) *HTMLPreElement

HTMLPreElementFromJS is casting a js.Value into HTMLPreElement.

func HTMLPreElementFromWrapper

func HTMLPreElementFromWrapper(input core.Wrapper) *HTMLPreElement

HTMLPreElementFromJS is casting from something that holds a js.Value into HTMLPreElement.

func (*HTMLPreElement) SetWidth

func (_this *HTMLPreElement) SetWidth(value int)

SetWidth setting attribute 'width' with type int (idl: long).

func (*HTMLPreElement) Width

func (_this *HTMLPreElement) Width() int

Width returning attribute 'width' with type int (idl: long).

type HTMLProgressElement

type HTMLProgressElement struct {
	HTMLElement
}

class: HTMLProgressElement

func HTMLProgressElementFromJS

func HTMLProgressElementFromJS(value js.Value) *HTMLProgressElement

HTMLProgressElementFromJS is casting a js.Value into HTMLProgressElement.

func HTMLProgressElementFromWrapper

func HTMLProgressElementFromWrapper(input core.Wrapper) *HTMLProgressElement

HTMLProgressElementFromJS is casting from something that holds a js.Value into HTMLProgressElement.

func (*HTMLProgressElement) Labels

func (_this *HTMLProgressElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLProgressElement) Max

func (_this *HTMLProgressElement) Max() float64

Max returning attribute 'max' with type float64 (idl: double).

func (*HTMLProgressElement) Position

func (_this *HTMLProgressElement) Position() float64

Position returning attribute 'position' with type float64 (idl: double).

func (*HTMLProgressElement) SetMax

func (_this *HTMLProgressElement) SetMax(value float64)

SetMax setting attribute 'max' with type float64 (idl: double).

func (*HTMLProgressElement) SetValue

func (_this *HTMLProgressElement) SetValue(value float64)

SetValue setting attribute 'value' with type float64 (idl: double).

func (*HTMLProgressElement) Value

func (_this *HTMLProgressElement) Value() float64

Value returning attribute 'value' with type float64 (idl: double).

type HTMLQuoteElement

type HTMLQuoteElement struct {
	HTMLElement
}

class: HTMLQuoteElement

func HTMLQuoteElementFromJS

func HTMLQuoteElementFromJS(value js.Value) *HTMLQuoteElement

HTMLQuoteElementFromJS is casting a js.Value into HTMLQuoteElement.

func HTMLQuoteElementFromWrapper

func HTMLQuoteElementFromWrapper(input core.Wrapper) *HTMLQuoteElement

HTMLQuoteElementFromJS is casting from something that holds a js.Value into HTMLQuoteElement.

func (*HTMLQuoteElement) Cite

func (_this *HTMLQuoteElement) Cite() string

Cite returning attribute 'cite' with type string (idl: USVString).

func (*HTMLQuoteElement) SetCite

func (_this *HTMLQuoteElement) SetCite(value string)

SetCite setting attribute 'cite' with type string (idl: USVString).

type HTMLScriptElement

type HTMLScriptElement struct {
	HTMLElement
}

class: HTMLScriptElement

func HTMLScriptElementFromJS

func HTMLScriptElementFromJS(value js.Value) *HTMLScriptElement

HTMLScriptElementFromJS is casting a js.Value into HTMLScriptElement.

func HTMLScriptElementFromWrapper

func HTMLScriptElementFromWrapper(input core.Wrapper) *HTMLScriptElement

HTMLScriptElementFromJS is casting from something that holds a js.Value into HTMLScriptElement.

func (*HTMLScriptElement) Async

func (_this *HTMLScriptElement) Async() bool

Async returning attribute 'async' with type bool (idl: boolean).

func (*HTMLScriptElement) Charset

func (_this *HTMLScriptElement) Charset() string

Charset returning attribute 'charset' with type string (idl: DOMString).

func (*HTMLScriptElement) CrossOrigin

func (_this *HTMLScriptElement) CrossOrigin() *string

CrossOrigin returning attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLScriptElement) Defer

func (_this *HTMLScriptElement) Defer() bool

Defer returning attribute 'defer' with type bool (idl: boolean).

func (*HTMLScriptElement) Event

func (_this *HTMLScriptElement) Event() string

Event returning attribute 'event' with type string (idl: DOMString).

func (*HTMLScriptElement) HtmlFor

func (_this *HTMLScriptElement) HtmlFor() string

HtmlFor returning attribute 'htmlFor' with type string (idl: DOMString).

func (*HTMLScriptElement) Integrity

func (_this *HTMLScriptElement) Integrity() string

Integrity returning attribute 'integrity' with type string (idl: DOMString).

func (*HTMLScriptElement) NoModule

func (_this *HTMLScriptElement) NoModule() bool

NoModule returning attribute 'noModule' with type bool (idl: boolean).

func (*HTMLScriptElement) ReferrerPolicy

func (_this *HTMLScriptElement) ReferrerPolicy() string

ReferrerPolicy returning attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLScriptElement) SetAsync

func (_this *HTMLScriptElement) SetAsync(value bool)

SetAsync setting attribute 'async' with type bool (idl: boolean).

func (*HTMLScriptElement) SetCharset

func (_this *HTMLScriptElement) SetCharset(value string)

SetCharset setting attribute 'charset' with type string (idl: DOMString).

func (*HTMLScriptElement) SetCrossOrigin

func (_this *HTMLScriptElement) SetCrossOrigin(value *string)

SetCrossOrigin setting attribute 'crossOrigin' with type string (idl: DOMString).

func (*HTMLScriptElement) SetDefer

func (_this *HTMLScriptElement) SetDefer(value bool)

SetDefer setting attribute 'defer' with type bool (idl: boolean).

func (*HTMLScriptElement) SetEvent

func (_this *HTMLScriptElement) SetEvent(value string)

SetEvent setting attribute 'event' with type string (idl: DOMString).

func (*HTMLScriptElement) SetHtmlFor

func (_this *HTMLScriptElement) SetHtmlFor(value string)

SetHtmlFor setting attribute 'htmlFor' with type string (idl: DOMString).

func (*HTMLScriptElement) SetIntegrity

func (_this *HTMLScriptElement) SetIntegrity(value string)

SetIntegrity setting attribute 'integrity' with type string (idl: DOMString).

func (*HTMLScriptElement) SetNoModule

func (_this *HTMLScriptElement) SetNoModule(value bool)

SetNoModule setting attribute 'noModule' with type bool (idl: boolean).

func (*HTMLScriptElement) SetReferrerPolicy

func (_this *HTMLScriptElement) SetReferrerPolicy(value string)

SetReferrerPolicy setting attribute 'referrerPolicy' with type string (idl: DOMString).

func (*HTMLScriptElement) SetSrc

func (_this *HTMLScriptElement) SetSrc(value string)

SetSrc setting attribute 'src' with type string (idl: USVString).

func (*HTMLScriptElement) SetText

func (_this *HTMLScriptElement) SetText(value string)

SetText setting attribute 'text' with type string (idl: DOMString).

func (*HTMLScriptElement) SetType

func (_this *HTMLScriptElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLScriptElement) Src

func (_this *HTMLScriptElement) Src() string

Src returning attribute 'src' with type string (idl: USVString).

func (*HTMLScriptElement) Text

func (_this *HTMLScriptElement) Text() string

Text returning attribute 'text' with type string (idl: DOMString).

func (*HTMLScriptElement) Type

func (_this *HTMLScriptElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLSelectElement

type HTMLSelectElement struct {
	HTMLElement
}

class: HTMLSelectElement

func HTMLSelectElementFromJS

func HTMLSelectElementFromJS(value js.Value) *HTMLSelectElement

HTMLSelectElementFromJS is casting a js.Value into HTMLSelectElement.

func HTMLSelectElementFromWrapper

func HTMLSelectElementFromWrapper(input core.Wrapper) *HTMLSelectElement

HTMLSelectElementFromJS is casting from something that holds a js.Value into HTMLSelectElement.

func (*HTMLSelectElement) Add

func (_this *HTMLSelectElement) Add(element *Union, before *Union)

func (*HTMLSelectElement) Autocomplete

func (_this *HTMLSelectElement) Autocomplete() string

Autocomplete returning attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLSelectElement) Autofocus

func (_this *HTMLSelectElement) Autofocus() bool

Autofocus returning attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLSelectElement) CheckValidity

func (_this *HTMLSelectElement) CheckValidity() (_result bool)

func (*HTMLSelectElement) Disabled

func (_this *HTMLSelectElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLSelectElement) Form

func (_this *HTMLSelectElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLSelectElement) Index

func (_this *HTMLSelectElement) Index(index uint) (_result *dom.Element)

func (*HTMLSelectElement) Item

func (_this *HTMLSelectElement) Item(index uint) (_result *dom.Element)

func (*HTMLSelectElement) Labels

func (_this *HTMLSelectElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLSelectElement) Length

func (_this *HTMLSelectElement) Length() uint

Length returning attribute 'length' with type uint (idl: unsigned long).

func (*HTMLSelectElement) Multiple

func (_this *HTMLSelectElement) Multiple() bool

Multiple returning attribute 'multiple' with type bool (idl: boolean).

func (*HTMLSelectElement) Name

func (_this *HTMLSelectElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLSelectElement) NamedItem

func (_this *HTMLSelectElement) NamedItem(name string) (_result *HTMLOptionElement)

func (*HTMLSelectElement) Options

func (_this *HTMLSelectElement) Options() *HTMLOptionsCollection

Options returning attribute 'options' with type HTMLOptionsCollection (idl: HTMLOptionsCollection).

func (*HTMLSelectElement) Remove2

func (_this *HTMLSelectElement) Remove2()

func (*HTMLSelectElement) Remove3

func (_this *HTMLSelectElement) Remove3(index int)

func (*HTMLSelectElement) ReportValidity

func (_this *HTMLSelectElement) ReportValidity() (_result bool)

func (*HTMLSelectElement) Required

func (_this *HTMLSelectElement) Required() bool

Required returning attribute 'required' with type bool (idl: boolean).

func (*HTMLSelectElement) SelectedIndex

func (_this *HTMLSelectElement) SelectedIndex() int

SelectedIndex returning attribute 'selectedIndex' with type int (idl: long).

func (*HTMLSelectElement) SelectedOptions

func (_this *HTMLSelectElement) SelectedOptions() *dom.HTMLCollection

SelectedOptions returning attribute 'selectedOptions' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLSelectElement) SetAutocomplete

func (_this *HTMLSelectElement) SetAutocomplete(value string)

SetAutocomplete setting attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLSelectElement) SetAutofocus

func (_this *HTMLSelectElement) SetAutofocus(value bool)

SetAutofocus setting attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLSelectElement) SetCustomValidity

func (_this *HTMLSelectElement) SetCustomValidity(_error string)

func (*HTMLSelectElement) SetDisabled

func (_this *HTMLSelectElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLSelectElement) SetIndex

func (_this *HTMLSelectElement) SetIndex(index uint, option *HTMLOptionElement)

func (*HTMLSelectElement) SetLength

func (_this *HTMLSelectElement) SetLength(value uint)

SetLength setting attribute 'length' with type uint (idl: unsigned long).

func (*HTMLSelectElement) SetMultiple

func (_this *HTMLSelectElement) SetMultiple(value bool)

SetMultiple setting attribute 'multiple' with type bool (idl: boolean).

func (*HTMLSelectElement) SetName

func (_this *HTMLSelectElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLSelectElement) SetRequired

func (_this *HTMLSelectElement) SetRequired(value bool)

SetRequired setting attribute 'required' with type bool (idl: boolean).

func (*HTMLSelectElement) SetSelectedIndex

func (_this *HTMLSelectElement) SetSelectedIndex(value int)

SetSelectedIndex setting attribute 'selectedIndex' with type int (idl: long).

func (*HTMLSelectElement) SetSize

func (_this *HTMLSelectElement) SetSize(value uint)

SetSize setting attribute 'size' with type uint (idl: unsigned long).

func (*HTMLSelectElement) SetValue

func (_this *HTMLSelectElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLSelectElement) Size

func (_this *HTMLSelectElement) Size() uint

Size returning attribute 'size' with type uint (idl: unsigned long).

func (*HTMLSelectElement) Type

func (_this *HTMLSelectElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLSelectElement) ValidationMessage

func (_this *HTMLSelectElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLSelectElement) Validity

func (_this *HTMLSelectElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLSelectElement) Value

func (_this *HTMLSelectElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLSelectElement) WillValidate

func (_this *HTMLSelectElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

type HTMLSlotElement

type HTMLSlotElement struct {
	HTMLElement
}

class: HTMLSlotElement

func HTMLSlotElementFromJS

func HTMLSlotElementFromJS(value js.Value) *HTMLSlotElement

HTMLSlotElementFromJS is casting a js.Value into HTMLSlotElement.

func HTMLSlotElementFromWrapper

func HTMLSlotElementFromWrapper(input core.Wrapper) *HTMLSlotElement

HTMLSlotElementFromJS is casting from something that holds a js.Value into HTMLSlotElement.

func (*HTMLSlotElement) AssignedElements

func (_this *HTMLSlotElement) AssignedElements(options *AssignedNodesOptions) (_result []*dom.Element)

func (*HTMLSlotElement) AssignedNodes

func (_this *HTMLSlotElement) AssignedNodes(options *AssignedNodesOptions) (_result []*dom.Node)

func (*HTMLSlotElement) Name

func (_this *HTMLSlotElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLSlotElement) SetName

func (_this *HTMLSlotElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

type HTMLSourceElement

type HTMLSourceElement struct {
	HTMLElement
}

class: HTMLSourceElement

func HTMLSourceElementFromJS

func HTMLSourceElementFromJS(value js.Value) *HTMLSourceElement

HTMLSourceElementFromJS is casting a js.Value into HTMLSourceElement.

func HTMLSourceElementFromWrapper

func HTMLSourceElementFromWrapper(input core.Wrapper) *HTMLSourceElement

HTMLSourceElementFromJS is casting from something that holds a js.Value into HTMLSourceElement.

func (*HTMLSourceElement) Media

func (_this *HTMLSourceElement) Media() string

Media returning attribute 'media' with type string (idl: DOMString).

func (*HTMLSourceElement) SetMedia

func (_this *HTMLSourceElement) SetMedia(value string)

SetMedia setting attribute 'media' with type string (idl: DOMString).

func (*HTMLSourceElement) SetSizes

func (_this *HTMLSourceElement) SetSizes(value string)

SetSizes setting attribute 'sizes' with type string (idl: DOMString).

func (*HTMLSourceElement) SetSrc

func (_this *HTMLSourceElement) SetSrc(value string)

SetSrc setting attribute 'src' with type string (idl: USVString).

func (*HTMLSourceElement) SetSrcset

func (_this *HTMLSourceElement) SetSrcset(value string)

SetSrcset setting attribute 'srcset' with type string (idl: USVString).

func (*HTMLSourceElement) SetType

func (_this *HTMLSourceElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLSourceElement) Sizes

func (_this *HTMLSourceElement) Sizes() string

Sizes returning attribute 'sizes' with type string (idl: DOMString).

func (*HTMLSourceElement) Src

func (_this *HTMLSourceElement) Src() string

Src returning attribute 'src' with type string (idl: USVString).

func (*HTMLSourceElement) Srcset

func (_this *HTMLSourceElement) Srcset() string

Srcset returning attribute 'srcset' with type string (idl: USVString).

func (*HTMLSourceElement) Type

func (_this *HTMLSourceElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLSpanElement

type HTMLSpanElement struct {
	HTMLElement
}

class: HTMLSpanElement

func HTMLSpanElementFromJS

func HTMLSpanElementFromJS(value js.Value) *HTMLSpanElement

HTMLSpanElementFromJS is casting a js.Value into HTMLSpanElement.

func HTMLSpanElementFromWrapper

func HTMLSpanElementFromWrapper(input core.Wrapper) *HTMLSpanElement

HTMLSpanElementFromJS is casting from something that holds a js.Value into HTMLSpanElement.

type HTMLStyleElement

type HTMLStyleElement struct {
	HTMLElement
}

class: HTMLStyleElement

func HTMLStyleElementFromJS

func HTMLStyleElementFromJS(value js.Value) *HTMLStyleElement

HTMLStyleElementFromJS is casting a js.Value into HTMLStyleElement.

func HTMLStyleElementFromWrapper

func HTMLStyleElementFromWrapper(input core.Wrapper) *HTMLStyleElement

HTMLStyleElementFromJS is casting from something that holds a js.Value into HTMLStyleElement.

func (*HTMLStyleElement) Media

func (_this *HTMLStyleElement) Media() string

Media returning attribute 'media' with type string (idl: DOMString).

func (*HTMLStyleElement) SetMedia

func (_this *HTMLStyleElement) SetMedia(value string)

SetMedia setting attribute 'media' with type string (idl: DOMString).

func (*HTMLStyleElement) SetType

func (_this *HTMLStyleElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLStyleElement) Sheet

func (_this *HTMLStyleElement) Sheet() *cssom.CSSStyleSheet

Sheet returning attribute 'sheet' with type cssom.CSSStyleSheet (idl: CSSStyleSheet).

func (*HTMLStyleElement) Type

func (_this *HTMLStyleElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLTableCaptionElement

type HTMLTableCaptionElement struct {
	HTMLElement
}

class: HTMLTableCaptionElement

func HTMLTableCaptionElementFromJS

func HTMLTableCaptionElementFromJS(value js.Value) *HTMLTableCaptionElement

HTMLTableCaptionElementFromJS is casting a js.Value into HTMLTableCaptionElement.

func HTMLTableCaptionElementFromWrapper

func HTMLTableCaptionElementFromWrapper(input core.Wrapper) *HTMLTableCaptionElement

HTMLTableCaptionElementFromJS is casting from something that holds a js.Value into HTMLTableCaptionElement.

func (*HTMLTableCaptionElement) Align

func (_this *HTMLTableCaptionElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableCaptionElement) SetAlign

func (_this *HTMLTableCaptionElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

type HTMLTableCellElement

type HTMLTableCellElement struct {
	HTMLElement
}

class: HTMLTableCellElement

func HTMLTableCellElementFromJS

func HTMLTableCellElementFromJS(value js.Value) *HTMLTableCellElement

HTMLTableCellElementFromJS is casting a js.Value into HTMLTableCellElement.

func HTMLTableCellElementFromWrapper

func HTMLTableCellElementFromWrapper(input core.Wrapper) *HTMLTableCellElement

HTMLTableCellElementFromJS is casting from something that holds a js.Value into HTMLTableCellElement.

func (*HTMLTableCellElement) Abbr

func (_this *HTMLTableCellElement) Abbr() string

Abbr returning attribute 'abbr' with type string (idl: DOMString).

func (*HTMLTableCellElement) Align

func (_this *HTMLTableCellElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableCellElement) Axis

func (_this *HTMLTableCellElement) Axis() string

Axis returning attribute 'axis' with type string (idl: DOMString).

func (*HTMLTableCellElement) BgColor

func (_this *HTMLTableCellElement) BgColor() string

BgColor returning attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableCellElement) CellIndex

func (_this *HTMLTableCellElement) CellIndex() int

CellIndex returning attribute 'cellIndex' with type int (idl: long).

func (*HTMLTableCellElement) Ch

func (_this *HTMLTableCellElement) Ch() string

Ch returning attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableCellElement) ChOff

func (_this *HTMLTableCellElement) ChOff() string

ChOff returning attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableCellElement) ColSpan

func (_this *HTMLTableCellElement) ColSpan() uint

ColSpan returning attribute 'colSpan' with type uint (idl: unsigned long).

func (*HTMLTableCellElement) Headers

func (_this *HTMLTableCellElement) Headers() string

Headers returning attribute 'headers' with type string (idl: DOMString).

func (*HTMLTableCellElement) Height

func (_this *HTMLTableCellElement) Height() string

Height returning attribute 'height' with type string (idl: DOMString).

func (*HTMLTableCellElement) NoWrap

func (_this *HTMLTableCellElement) NoWrap() bool

NoWrap returning attribute 'noWrap' with type bool (idl: boolean).

func (*HTMLTableCellElement) RowSpan

func (_this *HTMLTableCellElement) RowSpan() uint

RowSpan returning attribute 'rowSpan' with type uint (idl: unsigned long).

func (*HTMLTableCellElement) Scope

func (_this *HTMLTableCellElement) Scope() string

Scope returning attribute 'scope' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetAbbr

func (_this *HTMLTableCellElement) SetAbbr(value string)

SetAbbr setting attribute 'abbr' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetAlign

func (_this *HTMLTableCellElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetAxis

func (_this *HTMLTableCellElement) SetAxis(value string)

SetAxis setting attribute 'axis' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetBgColor

func (_this *HTMLTableCellElement) SetBgColor(value string)

SetBgColor setting attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetCh

func (_this *HTMLTableCellElement) SetCh(value string)

SetCh setting attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetChOff

func (_this *HTMLTableCellElement) SetChOff(value string)

SetChOff setting attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetColSpan

func (_this *HTMLTableCellElement) SetColSpan(value uint)

SetColSpan setting attribute 'colSpan' with type uint (idl: unsigned long).

func (*HTMLTableCellElement) SetHeaders

func (_this *HTMLTableCellElement) SetHeaders(value string)

SetHeaders setting attribute 'headers' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetHeight

func (_this *HTMLTableCellElement) SetHeight(value string)

SetHeight setting attribute 'height' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetNoWrap

func (_this *HTMLTableCellElement) SetNoWrap(value bool)

SetNoWrap setting attribute 'noWrap' with type bool (idl: boolean).

func (*HTMLTableCellElement) SetRowSpan

func (_this *HTMLTableCellElement) SetRowSpan(value uint)

SetRowSpan setting attribute 'rowSpan' with type uint (idl: unsigned long).

func (*HTMLTableCellElement) SetScope

func (_this *HTMLTableCellElement) SetScope(value string)

SetScope setting attribute 'scope' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetVAlign

func (_this *HTMLTableCellElement) SetVAlign(value string)

SetVAlign setting attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableCellElement) SetWidth

func (_this *HTMLTableCellElement) SetWidth(value string)

SetWidth setting attribute 'width' with type string (idl: DOMString).

func (*HTMLTableCellElement) VAlign

func (_this *HTMLTableCellElement) VAlign() string

VAlign returning attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableCellElement) Width

func (_this *HTMLTableCellElement) Width() string

Width returning attribute 'width' with type string (idl: DOMString).

type HTMLTableColElement

type HTMLTableColElement struct {
	HTMLElement
}

class: HTMLTableColElement

func HTMLTableColElementFromJS

func HTMLTableColElementFromJS(value js.Value) *HTMLTableColElement

HTMLTableColElementFromJS is casting a js.Value into HTMLTableColElement.

func HTMLTableColElementFromWrapper

func HTMLTableColElementFromWrapper(input core.Wrapper) *HTMLTableColElement

HTMLTableColElementFromJS is casting from something that holds a js.Value into HTMLTableColElement.

func (*HTMLTableColElement) Align

func (_this *HTMLTableColElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableColElement) Ch

func (_this *HTMLTableColElement) Ch() string

Ch returning attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableColElement) ChOff

func (_this *HTMLTableColElement) ChOff() string

ChOff returning attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableColElement) SetAlign

func (_this *HTMLTableColElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLTableColElement) SetCh

func (_this *HTMLTableColElement) SetCh(value string)

SetCh setting attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableColElement) SetChOff

func (_this *HTMLTableColElement) SetChOff(value string)

SetChOff setting attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableColElement) SetSpan

func (_this *HTMLTableColElement) SetSpan(value uint)

SetSpan setting attribute 'span' with type uint (idl: unsigned long).

func (*HTMLTableColElement) SetVAlign

func (_this *HTMLTableColElement) SetVAlign(value string)

SetVAlign setting attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableColElement) SetWidth

func (_this *HTMLTableColElement) SetWidth(value string)

SetWidth setting attribute 'width' with type string (idl: DOMString).

func (*HTMLTableColElement) Span

func (_this *HTMLTableColElement) Span() uint

Span returning attribute 'span' with type uint (idl: unsigned long).

func (*HTMLTableColElement) VAlign

func (_this *HTMLTableColElement) VAlign() string

VAlign returning attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableColElement) Width

func (_this *HTMLTableColElement) Width() string

Width returning attribute 'width' with type string (idl: DOMString).

type HTMLTableElement

type HTMLTableElement struct {
	HTMLElement
}

class: HTMLTableElement

func HTMLTableElementFromJS

func HTMLTableElementFromJS(value js.Value) *HTMLTableElement

HTMLTableElementFromJS is casting a js.Value into HTMLTableElement.

func HTMLTableElementFromWrapper

func HTMLTableElementFromWrapper(input core.Wrapper) *HTMLTableElement

HTMLTableElementFromJS is casting from something that holds a js.Value into HTMLTableElement.

func (*HTMLTableElement) Align

func (_this *HTMLTableElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableElement) BgColor

func (_this *HTMLTableElement) BgColor() string

BgColor returning attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableElement) Border

func (_this *HTMLTableElement) Border() string

Border returning attribute 'border' with type string (idl: DOMString).

func (*HTMLTableElement) Caption

func (_this *HTMLTableElement) Caption() *HTMLTableCaptionElement

Caption returning attribute 'caption' with type HTMLTableCaptionElement (idl: HTMLTableCaptionElement).

func (*HTMLTableElement) CellPadding

func (_this *HTMLTableElement) CellPadding() string

CellPadding returning attribute 'cellPadding' with type string (idl: DOMString).

func (*HTMLTableElement) CellSpacing

func (_this *HTMLTableElement) CellSpacing() string

CellSpacing returning attribute 'cellSpacing' with type string (idl: DOMString).

func (*HTMLTableElement) CreateCaption

func (_this *HTMLTableElement) CreateCaption() (_result *HTMLTableCaptionElement)

func (*HTMLTableElement) CreateTBody

func (_this *HTMLTableElement) CreateTBody() (_result *HTMLTableSectionElement)

func (*HTMLTableElement) CreateTFoot

func (_this *HTMLTableElement) CreateTFoot() (_result *HTMLTableSectionElement)

func (*HTMLTableElement) CreateTHead

func (_this *HTMLTableElement) CreateTHead() (_result *HTMLTableSectionElement)

func (*HTMLTableElement) DeleteCaption

func (_this *HTMLTableElement) DeleteCaption()

func (*HTMLTableElement) DeleteRow

func (_this *HTMLTableElement) DeleteRow(index int)

func (*HTMLTableElement) DeleteTFoot

func (_this *HTMLTableElement) DeleteTFoot()

func (*HTMLTableElement) DeleteTHead

func (_this *HTMLTableElement) DeleteTHead()

func (*HTMLTableElement) Frame

func (_this *HTMLTableElement) Frame() string

Frame returning attribute 'frame' with type string (idl: DOMString).

func (*HTMLTableElement) InsertRow

func (_this *HTMLTableElement) InsertRow(index *int) (_result *HTMLTableRowElement)

func (*HTMLTableElement) Rows

func (_this *HTMLTableElement) Rows() *dom.HTMLCollection

Rows returning attribute 'rows' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLTableElement) Rules

func (_this *HTMLTableElement) Rules() string

Rules returning attribute 'rules' with type string (idl: DOMString).

func (*HTMLTableElement) SetAlign

func (_this *HTMLTableElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLTableElement) SetBgColor

func (_this *HTMLTableElement) SetBgColor(value string)

SetBgColor setting attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableElement) SetBorder

func (_this *HTMLTableElement) SetBorder(value string)

SetBorder setting attribute 'border' with type string (idl: DOMString).

func (*HTMLTableElement) SetCaption

func (_this *HTMLTableElement) SetCaption(value *HTMLTableCaptionElement)

SetCaption setting attribute 'caption' with type HTMLTableCaptionElement (idl: HTMLTableCaptionElement).

func (*HTMLTableElement) SetCellPadding

func (_this *HTMLTableElement) SetCellPadding(value string)

SetCellPadding setting attribute 'cellPadding' with type string (idl: DOMString).

func (*HTMLTableElement) SetCellSpacing

func (_this *HTMLTableElement) SetCellSpacing(value string)

SetCellSpacing setting attribute 'cellSpacing' with type string (idl: DOMString).

func (*HTMLTableElement) SetFrame

func (_this *HTMLTableElement) SetFrame(value string)

SetFrame setting attribute 'frame' with type string (idl: DOMString).

func (*HTMLTableElement) SetRules

func (_this *HTMLTableElement) SetRules(value string)

SetRules setting attribute 'rules' with type string (idl: DOMString).

func (*HTMLTableElement) SetSummary

func (_this *HTMLTableElement) SetSummary(value string)

SetSummary setting attribute 'summary' with type string (idl: DOMString).

func (*HTMLTableElement) SetTFoot

func (_this *HTMLTableElement) SetTFoot(value *HTMLTableSectionElement)

SetTFoot setting attribute 'tFoot' with type HTMLTableSectionElement (idl: HTMLTableSectionElement).

func (*HTMLTableElement) SetTHead

func (_this *HTMLTableElement) SetTHead(value *HTMLTableSectionElement)

SetTHead setting attribute 'tHead' with type HTMLTableSectionElement (idl: HTMLTableSectionElement).

func (*HTMLTableElement) SetWidth

func (_this *HTMLTableElement) SetWidth(value string)

SetWidth setting attribute 'width' with type string (idl: DOMString).

func (*HTMLTableElement) Summary

func (_this *HTMLTableElement) Summary() string

Summary returning attribute 'summary' with type string (idl: DOMString).

func (*HTMLTableElement) TBodies

func (_this *HTMLTableElement) TBodies() *dom.HTMLCollection

TBodies returning attribute 'tBodies' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLTableElement) TFoot

func (_this *HTMLTableElement) TFoot() *HTMLTableSectionElement

TFoot returning attribute 'tFoot' with type HTMLTableSectionElement (idl: HTMLTableSectionElement).

func (*HTMLTableElement) THead

func (_this *HTMLTableElement) THead() *HTMLTableSectionElement

THead returning attribute 'tHead' with type HTMLTableSectionElement (idl: HTMLTableSectionElement).

func (*HTMLTableElement) Width

func (_this *HTMLTableElement) Width() string

Width returning attribute 'width' with type string (idl: DOMString).

type HTMLTableRowElement

type HTMLTableRowElement struct {
	HTMLElement
}

class: HTMLTableRowElement

func HTMLTableRowElementFromJS

func HTMLTableRowElementFromJS(value js.Value) *HTMLTableRowElement

HTMLTableRowElementFromJS is casting a js.Value into HTMLTableRowElement.

func HTMLTableRowElementFromWrapper

func HTMLTableRowElementFromWrapper(input core.Wrapper) *HTMLTableRowElement

HTMLTableRowElementFromJS is casting from something that holds a js.Value into HTMLTableRowElement.

func (*HTMLTableRowElement) Align

func (_this *HTMLTableRowElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableRowElement) BgColor

func (_this *HTMLTableRowElement) BgColor() string

BgColor returning attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableRowElement) Cells

func (_this *HTMLTableRowElement) Cells() *dom.HTMLCollection

Cells returning attribute 'cells' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLTableRowElement) Ch

func (_this *HTMLTableRowElement) Ch() string

Ch returning attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableRowElement) ChOff

func (_this *HTMLTableRowElement) ChOff() string

ChOff returning attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableRowElement) DeleteCell

func (_this *HTMLTableRowElement) DeleteCell(index int)

func (*HTMLTableRowElement) InsertCell

func (_this *HTMLTableRowElement) InsertCell(index *int) (_result *HTMLTableCellElement)

func (*HTMLTableRowElement) RowIndex

func (_this *HTMLTableRowElement) RowIndex() int

RowIndex returning attribute 'rowIndex' with type int (idl: long).

func (*HTMLTableRowElement) SectionRowIndex

func (_this *HTMLTableRowElement) SectionRowIndex() int

SectionRowIndex returning attribute 'sectionRowIndex' with type int (idl: long).

func (*HTMLTableRowElement) SetAlign

func (_this *HTMLTableRowElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLTableRowElement) SetBgColor

func (_this *HTMLTableRowElement) SetBgColor(value string)

SetBgColor setting attribute 'bgColor' with type string (idl: DOMString).

func (*HTMLTableRowElement) SetCh

func (_this *HTMLTableRowElement) SetCh(value string)

SetCh setting attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableRowElement) SetChOff

func (_this *HTMLTableRowElement) SetChOff(value string)

SetChOff setting attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableRowElement) SetVAlign

func (_this *HTMLTableRowElement) SetVAlign(value string)

SetVAlign setting attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableRowElement) VAlign

func (_this *HTMLTableRowElement) VAlign() string

VAlign returning attribute 'vAlign' with type string (idl: DOMString).

type HTMLTableSectionElement

type HTMLTableSectionElement struct {
	HTMLElement
}

class: HTMLTableSectionElement

func HTMLTableSectionElementFromJS

func HTMLTableSectionElementFromJS(value js.Value) *HTMLTableSectionElement

HTMLTableSectionElementFromJS is casting a js.Value into HTMLTableSectionElement.

func HTMLTableSectionElementFromWrapper

func HTMLTableSectionElementFromWrapper(input core.Wrapper) *HTMLTableSectionElement

HTMLTableSectionElementFromJS is casting from something that holds a js.Value into HTMLTableSectionElement.

func (*HTMLTableSectionElement) Align

func (_this *HTMLTableSectionElement) Align() string

Align returning attribute 'align' with type string (idl: DOMString).

func (*HTMLTableSectionElement) Ch

func (_this *HTMLTableSectionElement) Ch() string

Ch returning attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableSectionElement) ChOff

func (_this *HTMLTableSectionElement) ChOff() string

ChOff returning attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableSectionElement) DeleteRow

func (_this *HTMLTableSectionElement) DeleteRow(index int)

func (*HTMLTableSectionElement) InsertRow

func (_this *HTMLTableSectionElement) InsertRow(index *int) (_result *HTMLTableRowElement)

func (*HTMLTableSectionElement) Rows

Rows returning attribute 'rows' with type dom.HTMLCollection (idl: HTMLCollection).

func (*HTMLTableSectionElement) SetAlign

func (_this *HTMLTableSectionElement) SetAlign(value string)

SetAlign setting attribute 'align' with type string (idl: DOMString).

func (*HTMLTableSectionElement) SetCh

func (_this *HTMLTableSectionElement) SetCh(value string)

SetCh setting attribute 'ch' with type string (idl: DOMString).

func (*HTMLTableSectionElement) SetChOff

func (_this *HTMLTableSectionElement) SetChOff(value string)

SetChOff setting attribute 'chOff' with type string (idl: DOMString).

func (*HTMLTableSectionElement) SetVAlign

func (_this *HTMLTableSectionElement) SetVAlign(value string)

SetVAlign setting attribute 'vAlign' with type string (idl: DOMString).

func (*HTMLTableSectionElement) VAlign

func (_this *HTMLTableSectionElement) VAlign() string

VAlign returning attribute 'vAlign' with type string (idl: DOMString).

type HTMLTemplateElement

type HTMLTemplateElement struct {
	HTMLElement
}

class: HTMLTemplateElement

func HTMLTemplateElementFromJS

func HTMLTemplateElementFromJS(value js.Value) *HTMLTemplateElement

HTMLTemplateElementFromJS is casting a js.Value into HTMLTemplateElement.

func HTMLTemplateElementFromWrapper

func HTMLTemplateElementFromWrapper(input core.Wrapper) *HTMLTemplateElement

HTMLTemplateElementFromJS is casting from something that holds a js.Value into HTMLTemplateElement.

func (*HTMLTemplateElement) Content

func (_this *HTMLTemplateElement) Content() *dom.DocumentFragment

Content returning attribute 'content' with type dom.DocumentFragment (idl: DocumentFragment).

type HTMLTextAreaElement

type HTMLTextAreaElement struct {
	HTMLElement
}

class: HTMLTextAreaElement

func HTMLTextAreaElementFromJS

func HTMLTextAreaElementFromJS(value js.Value) *HTMLTextAreaElement

HTMLTextAreaElementFromJS is casting a js.Value into HTMLTextAreaElement.

func HTMLTextAreaElementFromWrapper

func HTMLTextAreaElementFromWrapper(input core.Wrapper) *HTMLTextAreaElement

HTMLTextAreaElementFromJS is casting from something that holds a js.Value into HTMLTextAreaElement.

func (*HTMLTextAreaElement) Autocomplete

func (_this *HTMLTextAreaElement) Autocomplete() string

Autocomplete returning attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLTextAreaElement) Autofocus

func (_this *HTMLTextAreaElement) Autofocus() bool

Autofocus returning attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLTextAreaElement) CheckValidity

func (_this *HTMLTextAreaElement) CheckValidity() (_result bool)

func (*HTMLTextAreaElement) Cols

func (_this *HTMLTextAreaElement) Cols() uint

Cols returning attribute 'cols' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) DefaultValue

func (_this *HTMLTextAreaElement) DefaultValue() string

DefaultValue returning attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLTextAreaElement) DirName

func (_this *HTMLTextAreaElement) DirName() string

DirName returning attribute 'dirName' with type string (idl: DOMString).

func (*HTMLTextAreaElement) Disabled

func (_this *HTMLTextAreaElement) Disabled() bool

Disabled returning attribute 'disabled' with type bool (idl: boolean).

func (*HTMLTextAreaElement) Form

func (_this *HTMLTextAreaElement) Form() *HTMLFormElement

Form returning attribute 'form' with type HTMLFormElement (idl: HTMLFormElement).

func (*HTMLTextAreaElement) Labels

func (_this *HTMLTextAreaElement) Labels() *dom.NodeList

Labels returning attribute 'labels' with type dom.NodeList (idl: NodeList).

func (*HTMLTextAreaElement) MaxLength

func (_this *HTMLTextAreaElement) MaxLength() int

MaxLength returning attribute 'maxLength' with type int (idl: long).

func (*HTMLTextAreaElement) MinLength

func (_this *HTMLTextAreaElement) MinLength() int

MinLength returning attribute 'minLength' with type int (idl: long).

func (*HTMLTextAreaElement) Name

func (_this *HTMLTextAreaElement) Name() string

Name returning attribute 'name' with type string (idl: DOMString).

func (*HTMLTextAreaElement) Placeholder

func (_this *HTMLTextAreaElement) Placeholder() string

Placeholder returning attribute 'placeholder' with type string (idl: DOMString).

func (*HTMLTextAreaElement) ReadOnly

func (_this *HTMLTextAreaElement) ReadOnly() bool

ReadOnly returning attribute 'readOnly' with type bool (idl: boolean).

func (*HTMLTextAreaElement) ReportValidity

func (_this *HTMLTextAreaElement) ReportValidity() (_result bool)

func (*HTMLTextAreaElement) Required

func (_this *HTMLTextAreaElement) Required() bool

Required returning attribute 'required' with type bool (idl: boolean).

func (*HTMLTextAreaElement) Rows

func (_this *HTMLTextAreaElement) Rows() uint

Rows returning attribute 'rows' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) Select

func (_this *HTMLTextAreaElement) Select()

func (*HTMLTextAreaElement) SelectionDirection

func (_this *HTMLTextAreaElement) SelectionDirection() string

SelectionDirection returning attribute 'selectionDirection' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SelectionEnd

func (_this *HTMLTextAreaElement) SelectionEnd() uint

SelectionEnd returning attribute 'selectionEnd' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SelectionStart

func (_this *HTMLTextAreaElement) SelectionStart() uint

SelectionStart returning attribute 'selectionStart' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SetAutocomplete

func (_this *HTMLTextAreaElement) SetAutocomplete(value string)

SetAutocomplete setting attribute 'autocomplete' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetAutofocus

func (_this *HTMLTextAreaElement) SetAutofocus(value bool)

SetAutofocus setting attribute 'autofocus' with type bool (idl: boolean).

func (*HTMLTextAreaElement) SetCols

func (_this *HTMLTextAreaElement) SetCols(value uint)

SetCols setting attribute 'cols' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SetCustomValidity

func (_this *HTMLTextAreaElement) SetCustomValidity(_error string)

func (*HTMLTextAreaElement) SetDefaultValue

func (_this *HTMLTextAreaElement) SetDefaultValue(value string)

SetDefaultValue setting attribute 'defaultValue' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetDirName

func (_this *HTMLTextAreaElement) SetDirName(value string)

SetDirName setting attribute 'dirName' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetDisabled

func (_this *HTMLTextAreaElement) SetDisabled(value bool)

SetDisabled setting attribute 'disabled' with type bool (idl: boolean).

func (*HTMLTextAreaElement) SetMaxLength

func (_this *HTMLTextAreaElement) SetMaxLength(value int)

SetMaxLength setting attribute 'maxLength' with type int (idl: long).

func (*HTMLTextAreaElement) SetMinLength

func (_this *HTMLTextAreaElement) SetMinLength(value int)

SetMinLength setting attribute 'minLength' with type int (idl: long).

func (*HTMLTextAreaElement) SetName

func (_this *HTMLTextAreaElement) SetName(value string)

SetName setting attribute 'name' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetPlaceholder

func (_this *HTMLTextAreaElement) SetPlaceholder(value string)

SetPlaceholder setting attribute 'placeholder' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetRangeText

func (_this *HTMLTextAreaElement) SetRangeText(replacement string)

func (*HTMLTextAreaElement) SetRangeText2

func (_this *HTMLTextAreaElement) SetRangeText2(replacement string, start uint, end uint, selectionMode *SelectionMode)

func (*HTMLTextAreaElement) SetReadOnly

func (_this *HTMLTextAreaElement) SetReadOnly(value bool)

SetReadOnly setting attribute 'readOnly' with type bool (idl: boolean).

func (*HTMLTextAreaElement) SetRequired

func (_this *HTMLTextAreaElement) SetRequired(value bool)

SetRequired setting attribute 'required' with type bool (idl: boolean).

func (*HTMLTextAreaElement) SetRows

func (_this *HTMLTextAreaElement) SetRows(value uint)

SetRows setting attribute 'rows' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SetSelectionDirection

func (_this *HTMLTextAreaElement) SetSelectionDirection(value string)

SetSelectionDirection setting attribute 'selectionDirection' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetSelectionEnd

func (_this *HTMLTextAreaElement) SetSelectionEnd(value uint)

SetSelectionEnd setting attribute 'selectionEnd' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SetSelectionRange

func (_this *HTMLTextAreaElement) SetSelectionRange(start uint, end uint, direction *string)

func (*HTMLTextAreaElement) SetSelectionStart

func (_this *HTMLTextAreaElement) SetSelectionStart(value uint)

SetSelectionStart setting attribute 'selectionStart' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) SetValue

func (_this *HTMLTextAreaElement) SetValue(value string)

SetValue setting attribute 'value' with type string (idl: DOMString).

func (*HTMLTextAreaElement) SetWrap

func (_this *HTMLTextAreaElement) SetWrap(value string)

SetWrap setting attribute 'wrap' with type string (idl: DOMString).

func (*HTMLTextAreaElement) TextLength

func (_this *HTMLTextAreaElement) TextLength() uint

TextLength returning attribute 'textLength' with type uint (idl: unsigned long).

func (*HTMLTextAreaElement) Type

func (_this *HTMLTextAreaElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

func (*HTMLTextAreaElement) ValidationMessage

func (_this *HTMLTextAreaElement) ValidationMessage() string

ValidationMessage returning attribute 'validationMessage' with type string (idl: DOMString).

func (*HTMLTextAreaElement) Validity

func (_this *HTMLTextAreaElement) Validity() *ValidityState

Validity returning attribute 'validity' with type ValidityState (idl: ValidityState).

func (*HTMLTextAreaElement) Value

func (_this *HTMLTextAreaElement) Value() string

Value returning attribute 'value' with type string (idl: DOMString).

func (*HTMLTextAreaElement) WillValidate

func (_this *HTMLTextAreaElement) WillValidate() bool

WillValidate returning attribute 'willValidate' with type bool (idl: boolean).

func (*HTMLTextAreaElement) Wrap

func (_this *HTMLTextAreaElement) Wrap() string

Wrap returning attribute 'wrap' with type string (idl: DOMString).

type HTMLTimeElement

type HTMLTimeElement struct {
	HTMLElement
}

class: HTMLTimeElement

func HTMLTimeElementFromJS

func HTMLTimeElementFromJS(value js.Value) *HTMLTimeElement

HTMLTimeElementFromJS is casting a js.Value into HTMLTimeElement.

func HTMLTimeElementFromWrapper

func HTMLTimeElementFromWrapper(input core.Wrapper) *HTMLTimeElement

HTMLTimeElementFromJS is casting from something that holds a js.Value into HTMLTimeElement.

func (*HTMLTimeElement) DateTime

func (_this *HTMLTimeElement) DateTime() string

DateTime returning attribute 'dateTime' with type string (idl: DOMString).

func (*HTMLTimeElement) SetDateTime

func (_this *HTMLTimeElement) SetDateTime(value string)

SetDateTime setting attribute 'dateTime' with type string (idl: DOMString).

type HTMLTitleElement

type HTMLTitleElement struct {
	HTMLElement
}

class: HTMLTitleElement

func HTMLTitleElementFromJS

func HTMLTitleElementFromJS(value js.Value) *HTMLTitleElement

HTMLTitleElementFromJS is casting a js.Value into HTMLTitleElement.

func HTMLTitleElementFromWrapper

func HTMLTitleElementFromWrapper(input core.Wrapper) *HTMLTitleElement

HTMLTitleElementFromJS is casting from something that holds a js.Value into HTMLTitleElement.

func (*HTMLTitleElement) SetText

func (_this *HTMLTitleElement) SetText(value string)

SetText setting attribute 'text' with type string (idl: DOMString).

func (*HTMLTitleElement) Text

func (_this *HTMLTitleElement) Text() string

Text returning attribute 'text' with type string (idl: DOMString).

type HTMLUListElement

type HTMLUListElement struct {
	HTMLElement
}

class: HTMLUListElement

func HTMLUListElementFromJS

func HTMLUListElementFromJS(value js.Value) *HTMLUListElement

HTMLUListElementFromJS is casting a js.Value into HTMLUListElement.

func HTMLUListElementFromWrapper

func HTMLUListElementFromWrapper(input core.Wrapper) *HTMLUListElement

HTMLUListElementFromJS is casting from something that holds a js.Value into HTMLUListElement.

func (*HTMLUListElement) Compact

func (_this *HTMLUListElement) Compact() bool

Compact returning attribute 'compact' with type bool (idl: boolean).

func (*HTMLUListElement) SetCompact

func (_this *HTMLUListElement) SetCompact(value bool)

SetCompact setting attribute 'compact' with type bool (idl: boolean).

func (*HTMLUListElement) SetType

func (_this *HTMLUListElement) SetType(value string)

SetType setting attribute 'type' with type string (idl: DOMString).

func (*HTMLUListElement) Type

func (_this *HTMLUListElement) Type() string

Type returning attribute 'type' with type string (idl: DOMString).

type HTMLUnknownElement

type HTMLUnknownElement struct {
	HTMLElement
}

class: HTMLUnknownElement

func HTMLUnknownElementFromJS

func HTMLUnknownElementFromJS(value js.Value) *HTMLUnknownElement

HTMLUnknownElementFromJS is casting a js.Value into HTMLUnknownElement.

func HTMLUnknownElementFromWrapper

func HTMLUnknownElementFromWrapper(input core.Wrapper) *HTMLUnknownElement

HTMLUnknownElementFromJS is casting from something that holds a js.Value into HTMLUnknownElement.

type ImageEncodeOptions

type ImageEncodeOptions struct {
	Type    string
	Quality float64
}

dictionary: ImageEncodeOptions

func ImageEncodeOptionsFromJS

func ImageEncodeOptionsFromJS(value js.Value) *ImageEncodeOptions

ImageEncodeOptionsFromJS is allocating a new ImageEncodeOptions object and copy all values in the value javascript object.

func (*ImageEncodeOptions) JSValue

func (_this *ImageEncodeOptions) JSValue() js.Value

JSValue is allocating a new javascript object and copy all values

type OffscreenRenderingContextId

type OffscreenRenderingContextId int

enum: OffscreenRenderingContextId

const (
	WebglOffscreenRenderingContextId OffscreenRenderingContextId
	Webgl2OffscreenRenderingContextId
)

func OffscreenRenderingContextIdFromJS

func OffscreenRenderingContextIdFromJS(value js.Value) OffscreenRenderingContextId

OffscreenRenderingContextIdFromJS is converting a javascript value into a OffscreenRenderingContextId enum value.

func (*OffscreenRenderingContextId) JSValue

func (this *OffscreenRenderingContextId) JSValue() js.Value

JSValue is converting this enum into a javascript object

func (OffscreenRenderingContextId) Value

func (this OffscreenRenderingContextId) Value() string

Value is converting this into javascript defined string value

type PromiseFormData

type PromiseFormData struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: Promise

func PromiseFormDataFromJS

func PromiseFormDataFromJS(value js.Value) *PromiseFormData

PromiseFormDataFromJS is casting a js.Value into PromiseFormData.

func PromiseFormDataFromWrapper

func PromiseFormDataFromWrapper(input core.Wrapper) *PromiseFormData

PromiseFormDataFromJS is casting from something that holds a js.Value into PromiseFormData.

func (*PromiseFormData) Catch

func (_this *PromiseFormData) Catch(onRejected *PromiseFormDataOnRejected) (_result *PromiseFormData)

func (*PromiseFormData) Finally

func (_this *PromiseFormData) Finally(onFinally *javascript.PromiseFinally) (_result *PromiseFormData)

func (*PromiseFormData) JSValue

func (_this *PromiseFormData) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*PromiseFormData) Then

func (_this *PromiseFormData) Then(onFulfilled *PromiseFormDataOnFulfilled, onRejected *PromiseFormDataOnRejected) (_result *PromiseFormData)

type PromiseFormDataOnFulfilled

type PromiseFormDataOnFulfilled js.Func

PromiseFormDataOnFulfilled is a javascript function type.

Call Release() when done to release resouces allocated to this type.

type PromiseFormDataOnFulfilledFunc

type PromiseFormDataOnFulfilledFunc func(value *FormData)

callback: PromiseTemplateOnFulfilled

func PromiseFormDataOnFulfilledFromJS

func PromiseFormDataOnFulfilledFromJS(_value js.Value) PromiseFormDataOnFulfilledFunc

type PromiseFormDataOnRejected

type PromiseFormDataOnRejected js.Func

PromiseFormDataOnRejected is a javascript function type.

Call Release() when done to release resouces allocated to this type.

type PromiseFormDataOnRejectedFunc

type PromiseFormDataOnRejectedFunc func(reason js.Value)

callback: PromiseTemplateOnRejected

func PromiseFormDataOnRejectedFromJS

func PromiseFormDataOnRejectedFromJS(_value js.Value) PromiseFormDataOnRejectedFunc

type SelectionMode

type SelectionMode int

enum: SelectionMode

const (
	SelectSelectionMode SelectionMode = iota
	StartSelectionMode
	EndSelectionMode
	PreserveSelectionMode
)

func SelectionModeFromJS

func SelectionModeFromJS(value js.Value) SelectionMode

SelectionModeFromJS is converting a javascript value into a SelectionMode enum value.

func (*SelectionMode) JSValue

func (this *SelectionMode) JSValue() js.Value

JSValue is converting this enum into a javascript object

func (SelectionMode) Value

func (this SelectionMode) Value() string

Value is converting this into javascript defined string value

type TimeRanges

type TimeRanges struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: TimeRanges

func TimeRangesFromJS

func TimeRangesFromJS(value js.Value) *TimeRanges

TimeRangesFromJS is casting a js.Value into TimeRanges.

func TimeRangesFromWrapper

func TimeRangesFromWrapper(input core.Wrapper) *TimeRanges

TimeRangesFromJS is casting from something that holds a js.Value into TimeRanges.

func (*TimeRanges) End

func (_this *TimeRanges) End(index uint) (_result float64)

func (*TimeRanges) JSValue

func (_this *TimeRanges) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*TimeRanges) Length

func (_this *TimeRanges) Length() uint

Length returning attribute 'length' with type uint (idl: unsigned long).

func (*TimeRanges) Start

func (_this *TimeRanges) Start(index uint) (_result float64)

type Union

type Union struct {
	Value js.Value
}

func UnionFromJS

func UnionFromJS(value js.Value) *Union

func (*Union) JSValue

func (u *Union) JSValue() js.Value

type ValidityState

type ValidityState struct {
	// Value_JS holds a reference to a javascript value
	Value_JS js.Value
}

class: ValidityState

func ValidityStateFromJS

func ValidityStateFromJS(value js.Value) *ValidityState

ValidityStateFromJS is casting a js.Value into ValidityState.

func ValidityStateFromWrapper

func ValidityStateFromWrapper(input core.Wrapper) *ValidityState

ValidityStateFromJS is casting from something that holds a js.Value into ValidityState.

func (*ValidityState) BadInput

func (_this *ValidityState) BadInput() bool

BadInput returning attribute 'badInput' with type bool (idl: boolean).

func (*ValidityState) CustomError

func (_this *ValidityState) CustomError() bool

CustomError returning attribute 'customError' with type bool (idl: boolean).

func (*ValidityState) JSValue

func (_this *ValidityState) JSValue() js.Value

JSValue returns the js.Value or js.Null() if _this is nil

func (*ValidityState) PatternMismatch

func (_this *ValidityState) PatternMismatch() bool

PatternMismatch returning attribute 'patternMismatch' with type bool (idl: boolean).

func (*ValidityState) RangeOverflow

func (_this *ValidityState) RangeOverflow() bool

RangeOverflow returning attribute 'rangeOverflow' with type bool (idl: boolean).

func (*ValidityState) RangeUnderflow

func (_this *ValidityState) RangeUnderflow() bool

RangeUnderflow returning attribute 'rangeUnderflow' with type bool (idl: boolean).

func (*ValidityState) StepMismatch

func (_this *ValidityState) StepMismatch() bool

StepMismatch returning attribute 'stepMismatch' with type bool (idl: boolean).

func (*ValidityState) TooLong

func (_this *ValidityState) TooLong() bool

TooLong returning attribute 'tooLong' with type bool (idl: boolean).

func (*ValidityState) TooShort

func (_this *ValidityState) TooShort() bool

TooShort returning attribute 'tooShort' with type bool (idl: boolean).

func (*ValidityState) TypeMismatch

func (_this *ValidityState) TypeMismatch() bool

TypeMismatch returning attribute 'typeMismatch' with type bool (idl: boolean).

func (*ValidityState) Valid

func (_this *ValidityState) Valid() bool

Valid returning attribute 'valid' with type bool (idl: boolean).

func (*ValidityState) ValueMissing

func (_this *ValidityState) ValueMissing() bool

ValueMissing returning attribute 'valueMissing' with type bool (idl: boolean).

Directories

Path Synopsis
Package canvas contains HTML canvas related types.
Package canvas contains HTML canvas related types.
Package channel is websocket and communication between different pages.
Package channel is websocket and communication between different pages.
Package datatransfer is the data part in drag and drop
Package datatransfer is the data part in drag and drop
Pacakge draganddrop is Drag and Drop
Pacakge draganddrop is Drag and Drop
Package htmlcommon is a common type package
Package htmlcommon is a common type package
Package htmlevent contains events and callbacks types.
Package htmlevent contains events and callbacks types.
Pacakge htmlmisc is the unsorted collection of types.
Pacakge htmlmisc is the unsorted collection of types.
Package media contains HTML media related types.
Package media contains HTML media related types.
Package selection is upcoming selection related functionality.
Package selection is upcoming selection related functionality.
Package worker makes it possible to run a script operation in a background thread separate from the main execution thread of a web application.
Package worker makes it possible to run a script operation in a background thread separate from the main execution thread of a web application.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL