Documentation
¶
Overview ¶
Package html contains HTML DOM elements types.
Source: HTML Standard (https://html.spec.whatwg.org/)
Index ¶
- type AssignedNodesOptions
- type FocusOptions
- type FormData
- func (_this *FormData) Append(name string, value string)
- func (_this *FormData) Append2(name string, blobValue *file.Blob, filename *string)
- func (_this *FormData) Delete(name string)
- func (_this *FormData) Entries() (_result *FormDataEntryIterator)
- func (_this *FormData) ForEach(callback *FormDataForEach, optionalThisForCallbackArgument interface{})
- func (_this *FormData) Get(name string) (_result *Union)
- func (_this *FormData) GetAll(name string) (_result []*Union)
- func (_this *FormData) Has(name string) (_result bool)
- func (_this *FormData) JSValue() js.Value
- func (_this *FormData) Keys() (_result *FormDataKeyIterator)
- func (_this *FormData) Set(name string, value string)
- func (_this *FormData) Set2(name string, blobValue *file.Blob, filename *string)
- func (_this *FormData) Values() (_result *FormDataValueIterator)
- type FormDataEntryIterator
- type FormDataEntryIteratorValue
- type FormDataEvent
- type FormDataEventInit
- type FormDataForEach
- type FormDataForEachFunc
- type FormDataKeyIterator
- type FormDataKeyIteratorValue
- type FormDataValueIterator
- type FormDataValueIteratorValue
- type HTMLAllCollection
- func (_this *HTMLAllCollection) Get(name string) (_result *Union)
- func (_this *HTMLAllCollection) Index(index uint) (_result *dom.Element)
- func (_this *HTMLAllCollection) Item(nameOrIndex *string) (_result *Union)
- func (_this *HTMLAllCollection) JSValue() js.Value
- func (_this *HTMLAllCollection) Length() uint
- func (_this *HTMLAllCollection) NamedItem(name string) (_result *Union)
- type HTMLAnchorElement
- func (_this *HTMLAnchorElement) Charset() string
- func (_this *HTMLAnchorElement) Coords() string
- func (_this *HTMLAnchorElement) Download() string
- func (_this *HTMLAnchorElement) Hash() string
- func (_this *HTMLAnchorElement) Host() string
- func (_this *HTMLAnchorElement) Hostname() string
- func (_this *HTMLAnchorElement) Href() string
- func (_this *HTMLAnchorElement) Hreflang() string
- func (_this *HTMLAnchorElement) Name() string
- func (_this *HTMLAnchorElement) Origin() string
- func (_this *HTMLAnchorElement) Password() string
- func (_this *HTMLAnchorElement) Pathname() string
- func (_this *HTMLAnchorElement) Ping() string
- func (_this *HTMLAnchorElement) Port() string
- func (_this *HTMLAnchorElement) Protocol() string
- func (_this *HTMLAnchorElement) ReferrerPolicy() string
- func (_this *HTMLAnchorElement) Rel() string
- func (_this *HTMLAnchorElement) RelList() *domcore.DOMTokenList
- func (_this *HTMLAnchorElement) Rev() string
- func (_this *HTMLAnchorElement) Search() string
- func (_this *HTMLAnchorElement) SetCharset(value string)
- func (_this *HTMLAnchorElement) SetCoords(value string)
- func (_this *HTMLAnchorElement) SetDownload(value string)
- func (_this *HTMLAnchorElement) SetHash(value string)
- func (_this *HTMLAnchorElement) SetHost(value string)
- func (_this *HTMLAnchorElement) SetHostname(value string)
- func (_this *HTMLAnchorElement) SetHref(value string)
- func (_this *HTMLAnchorElement) SetHreflang(value string)
- func (_this *HTMLAnchorElement) SetName(value string)
- func (_this *HTMLAnchorElement) SetPassword(value string)
- func (_this *HTMLAnchorElement) SetPathname(value string)
- func (_this *HTMLAnchorElement) SetPing(value string)
- func (_this *HTMLAnchorElement) SetPort(value string)
- func (_this *HTMLAnchorElement) SetProtocol(value string)
- func (_this *HTMLAnchorElement) SetReferrerPolicy(value string)
- func (_this *HTMLAnchorElement) SetRel(value string)
- func (_this *HTMLAnchorElement) SetRev(value string)
- func (_this *HTMLAnchorElement) SetSearch(value string)
- func (_this *HTMLAnchorElement) SetShape(value string)
- func (_this *HTMLAnchorElement) SetTarget(value string)
- func (_this *HTMLAnchorElement) SetText(value string)
- func (_this *HTMLAnchorElement) SetType(value string)
- func (_this *HTMLAnchorElement) SetUsername(value string)
- func (_this *HTMLAnchorElement) Shape() string
- func (_this *HTMLAnchorElement) Target() string
- func (_this *HTMLAnchorElement) Text() string
- func (_this *HTMLAnchorElement) ToString() string
- func (_this *HTMLAnchorElement) Type() string
- func (_this *HTMLAnchorElement) Username() string
- type HTMLAreaElement
- func (_this *HTMLAreaElement) Alt() string
- func (_this *HTMLAreaElement) Coords() string
- func (_this *HTMLAreaElement) Download() string
- func (_this *HTMLAreaElement) Hash() string
- func (_this *HTMLAreaElement) Host() string
- func (_this *HTMLAreaElement) Hostname() string
- func (_this *HTMLAreaElement) Href() string
- func (_this *HTMLAreaElement) NoHref() bool
- func (_this *HTMLAreaElement) Origin() string
- func (_this *HTMLAreaElement) Password() string
- func (_this *HTMLAreaElement) Pathname() string
- func (_this *HTMLAreaElement) Ping() string
- func (_this *HTMLAreaElement) Port() string
- func (_this *HTMLAreaElement) Protocol() string
- func (_this *HTMLAreaElement) ReferrerPolicy() string
- func (_this *HTMLAreaElement) Rel() string
- func (_this *HTMLAreaElement) RelList() *domcore.DOMTokenList
- func (_this *HTMLAreaElement) Search() string
- func (_this *HTMLAreaElement) SetAlt(value string)
- func (_this *HTMLAreaElement) SetCoords(value string)
- func (_this *HTMLAreaElement) SetDownload(value string)
- func (_this *HTMLAreaElement) SetHash(value string)
- func (_this *HTMLAreaElement) SetHost(value string)
- func (_this *HTMLAreaElement) SetHostname(value string)
- func (_this *HTMLAreaElement) SetHref(value string)
- func (_this *HTMLAreaElement) SetNoHref(value bool)
- func (_this *HTMLAreaElement) SetPassword(value string)
- func (_this *HTMLAreaElement) SetPathname(value string)
- func (_this *HTMLAreaElement) SetPing(value string)
- func (_this *HTMLAreaElement) SetPort(value string)
- func (_this *HTMLAreaElement) SetProtocol(value string)
- func (_this *HTMLAreaElement) SetReferrerPolicy(value string)
- func (_this *HTMLAreaElement) SetRel(value string)
- func (_this *HTMLAreaElement) SetSearch(value string)
- func (_this *HTMLAreaElement) SetShape(value string)
- func (_this *HTMLAreaElement) SetTarget(value string)
- func (_this *HTMLAreaElement) SetUsername(value string)
- func (_this *HTMLAreaElement) Shape() string
- func (_this *HTMLAreaElement) Target() string
- func (_this *HTMLAreaElement) ToString() string
- func (_this *HTMLAreaElement) Username() string
- type HTMLBRElement
- type HTMLBaseElement
- type HTMLBodyElement
- func (_this *HTMLBodyElement) ALink() string
- func (_this *HTMLBodyElement) AddEventAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventBeforeUnload(...) js.Func
- func (_this *HTMLBodyElement) AddEventHashChange(...) js.Func
- func (_this *HTMLBodyElement) AddEventLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventOffline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventOnline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventOrientationChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventPageHide(...) js.Func
- func (_this *HTMLBodyElement) AddEventPageShow(...) js.Func
- func (_this *HTMLBodyElement) AddEventPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventRejectionHandled(...) js.Func
- func (_this *HTMLBodyElement) AddEventStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) AddEventUnhandledRejection(...) js.Func
- func (_this *HTMLBodyElement) AddEventUnload(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) Background() string
- func (_this *HTMLBodyElement) BgColor() string
- func (_this *HTMLBodyElement) Link() string
- func (_this *HTMLBodyElement) OnAfterPrint() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnBeforePrint() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnBeforeUnload() htmlcommon.OnBeforeUnloadEventHandlerFunc
- func (_this *HTMLBodyElement) OnHashChange() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnLanguageChange() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnMessage() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnMessageError() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnOffline() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnOnline() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnOrientationChange() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnPageHide() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnPageShow() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnPopState() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnRejectionHandled() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnStorage() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnUnhandledRejection() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) OnUnload() domcore.EventHandlerFunc
- func (_this *HTMLBodyElement) SetALink(value string)
- func (_this *HTMLBodyElement) SetBackground(value string)
- func (_this *HTMLBodyElement) SetBgColor(value string)
- func (_this *HTMLBodyElement) SetLink(value string)
- func (_this *HTMLBodyElement) SetOnAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnBeforeUnload(...) js.Func
- func (_this *HTMLBodyElement) SetOnHashChange(...) js.Func
- func (_this *HTMLBodyElement) SetOnLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnOffline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnOnline(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnOrientationChange(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnPageHide(...) js.Func
- func (_this *HTMLBodyElement) SetOnPageShow(...) js.Func
- func (_this *HTMLBodyElement) SetOnPopState(listener func(event *htmlevent.PopStateEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnRejectionHandled(...) js.Func
- func (_this *HTMLBodyElement) SetOnStorage(listener func(event *htmlevent.StorageEvent, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetOnUnhandledRejection(...) js.Func
- func (_this *HTMLBodyElement) SetOnUnload(listener func(event *domcore.Event, currentTarget *HTMLBodyElement)) js.Func
- func (_this *HTMLBodyElement) SetText(value string)
- func (_this *HTMLBodyElement) SetVLink(value string)
- func (_this *HTMLBodyElement) Text() string
- func (_this *HTMLBodyElement) VLink() string
- type HTMLButtonElement
- func (_this *HTMLButtonElement) Autofocus() bool
- func (_this *HTMLButtonElement) CheckValidity() (_result bool)
- func (_this *HTMLButtonElement) Disabled() bool
- func (_this *HTMLButtonElement) Form() *HTMLFormElement
- func (_this *HTMLButtonElement) FormAction() string
- func (_this *HTMLButtonElement) FormEnctype() string
- func (_this *HTMLButtonElement) FormMethod() string
- func (_this *HTMLButtonElement) FormNoValidate() bool
- func (_this *HTMLButtonElement) FormTarget() string
- func (_this *HTMLButtonElement) Labels() *dom.NodeList
- func (_this *HTMLButtonElement) Name() string
- func (_this *HTMLButtonElement) ReportValidity() (_result bool)
- func (_this *HTMLButtonElement) SetAutofocus(value bool)
- func (_this *HTMLButtonElement) SetCustomValidity(_error string)
- func (_this *HTMLButtonElement) SetDisabled(value bool)
- func (_this *HTMLButtonElement) SetFormAction(value string)
- func (_this *HTMLButtonElement) SetFormEnctype(value string)
- func (_this *HTMLButtonElement) SetFormMethod(value string)
- func (_this *HTMLButtonElement) SetFormNoValidate(value bool)
- func (_this *HTMLButtonElement) SetFormTarget(value string)
- func (_this *HTMLButtonElement) SetName(value string)
- func (_this *HTMLButtonElement) SetType(value string)
- func (_this *HTMLButtonElement) SetValue(value string)
- func (_this *HTMLButtonElement) Type() string
- func (_this *HTMLButtonElement) ValidationMessage() string
- func (_this *HTMLButtonElement) Validity() *ValidityState
- func (_this *HTMLButtonElement) Value() string
- func (_this *HTMLButtonElement) WillValidate() bool
- type HTMLDListElement
- type HTMLDataElement
- type HTMLDataListElement
- type HTMLDetailsElement
- type HTMLDialogElement
- func (_this *HTMLDialogElement) Close(returnValue *string)
- func (_this *HTMLDialogElement) Open() bool
- func (_this *HTMLDialogElement) ReturnValue() string
- func (_this *HTMLDialogElement) SetOpen(value bool)
- func (_this *HTMLDialogElement) SetReturnValue(value string)
- func (_this *HTMLDialogElement) Show()
- func (_this *HTMLDialogElement) ShowModal()
- type HTMLDirectoryElement
- type HTMLDivElement
- type HTMLElement
- func (_this *HTMLElement) AccessKey() string
- func (_this *HTMLElement) AccessKeyLabel() string
- func (_this *HTMLElement) AddEventAbort(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventAnimationCancel(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventAnimationEnd(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventAnimationIteration(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventAnimationStart(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventAuxclick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventBlur(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCanPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCanPlayThrough(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCancel(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventClose(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventContextMenu(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCopy(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCueChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventCut(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDblClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDrag(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragEnd(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragEnter(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragExit(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragLeave(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragOver(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDragStart(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDrop(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventDurationChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventEmptied(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventEnded(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventError(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventFocus(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventFormData(listener func(event *FormDataEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventGotPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventInput(listener func(event *htmlevent.InputEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventInvalid(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventKeyDown(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventKeyPress(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventKeyUp(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLoad(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLoadEnd(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLoadStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLoadedData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLoadedMetaData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventLostPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseDown(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseEnter(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseLeave(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseMove(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseOut(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseOver(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventMouseUp(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPaste(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPause(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPlaying(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerCancel(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerDown(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerEnter(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerLeave(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerMove(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerOut(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerOver(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventPointerUp(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventProgress(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventRateChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventReset(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventResize(listener func(event *htmlevent.UIEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventScroll(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSecurityPolicyViolation(...) js.Func
- func (_this *HTMLElement) AddEventSeeked(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSeeking(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSelect(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSelectStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSelectionChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventStalled(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSubmit(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventSuspend(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTimeUpdate(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventToggle(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTouchCancel(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTouchEnd(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTouchMove(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTouchStart(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTransitionCancel(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTransitionEnd(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTransitionRun(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventTransitionStart(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventVolumeChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventWaiting(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AddEventWheel(listener func(event *htmlevent.WheelEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) AttributeStyleMap() *typedom.StylePropertyMap
- func (_this *HTMLElement) Autocapitalize() string
- func (_this *HTMLElement) Blur()
- func (_this *HTMLElement) Click()
- func (_this *HTMLElement) ContentEditable() string
- func (_this *HTMLElement) Dataset() *domcore.DOMStringMap
- func (_this *HTMLElement) Dir() string
- func (_this *HTMLElement) Draggable() bool
- func (_this *HTMLElement) EnterKeyHint() string
- func (_this *HTMLElement) Focus(options *FocusOptions)
- func (_this *HTMLElement) Hidden() bool
- func (_this *HTMLElement) InnerText() string
- func (_this *HTMLElement) InputMode() string
- func (_this *HTMLElement) IsContentEditable() bool
- func (_this *HTMLElement) Lang() string
- func (_this *HTMLElement) Nonce() string
- func (_this *HTMLElement) OffsetHeight() int
- func (_this *HTMLElement) OffsetLeft() int
- func (_this *HTMLElement) OffsetParent() *dom.Element
- func (_this *HTMLElement) OffsetTop() int
- func (_this *HTMLElement) OffsetWidth() int
- func (_this *HTMLElement) OnAbort() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnAnimationCancel() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnAnimationEnd() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnAnimationIteration() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnAnimationStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnAuxclick() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnBlur() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCanPlay() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCanPlayThrough() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCancel() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnClick() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnClose() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnContextMenu() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCopy() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCueChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnCut() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDblClick() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDrag() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragEnd() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragEnter() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragExit() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragLeave() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragOver() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDragStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDrop() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnDurationChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnEmptied() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnEnded() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnError() htmlcommon.OnErrorEventHandlerFunc
- func (_this *HTMLElement) OnFocus() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnFormData() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnGotPointerCapture() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnInput() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnInvalid() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnKeyDown() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnKeyPress() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnKeyUp() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLoad() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLoadEnd() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLoadStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLoadedData() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLoadedMetaData() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnLostPointerCapture() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseDown() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseEnter() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseLeave() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseMove() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseOut() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseOver() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnMouseUp() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPaste() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPause() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPlay() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPlaying() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerCancel() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerDown() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerEnter() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerLeave() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerMove() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerOut() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerOver() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnPointerUp() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnProgress() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnRateChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnReset() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnResize() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnScroll() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSecurityPolicyViolation() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSeeked() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSeeking() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSelect() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSelectStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSelectionChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnStalled() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSubmit() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnSuspend() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTimeUpdate() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnToggle() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTouchCancel() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTouchEnd() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTouchMove() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTouchStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTransitionCancel() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTransitionEnd() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTransitionRun() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnTransitionStart() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnVolumeChange() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnWaiting() domcore.EventHandlerFunc
- func (_this *HTMLElement) OnWheel() domcore.EventHandlerFunc
- func (_this *HTMLElement) SetAccessKey(value string)
- func (_this *HTMLElement) SetAutocapitalize(value string)
- func (_this *HTMLElement) SetContentEditable(value string)
- func (_this *HTMLElement) SetDir(value string)
- func (_this *HTMLElement) SetDraggable(value bool)
- func (_this *HTMLElement) SetEnterKeyHint(value string)
- func (_this *HTMLElement) SetHidden(value bool)
- func (_this *HTMLElement) SetInnerText(value string)
- func (_this *HTMLElement) SetInputMode(value string)
- func (_this *HTMLElement) SetLang(value string)
- func (_this *HTMLElement) SetNonce(value string)
- func (_this *HTMLElement) SetOnAbort(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnAnimationCancel(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnAnimationEnd(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnAnimationIteration(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnAnimationStart(listener func(event *animations.AnimationEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnAuxclick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnBlur(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCanPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCanPlayThrough(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCancel(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnClose(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnContextMenu(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCopy(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCueChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnCut(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDblClick(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDrag(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragEnd(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragEnter(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragExit(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragLeave(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragOver(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDragStart(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDrop(listener func(event *htmlevent.DragEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnDurationChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnEmptied(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnEnded(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnError(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnFocus(listener func(event *htmlevent.FocusEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnFormData(listener func(event *FormDataEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnGotPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnInput(listener func(event *htmlevent.InputEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnInvalid(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnKeyDown(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnKeyPress(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnKeyUp(listener func(event *htmlevent.KeyboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLoad(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLoadEnd(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLoadStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLoadedData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLoadedMetaData(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnLostPointerCapture(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseDown(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseEnter(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseLeave(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseMove(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseOut(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseOver(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnMouseUp(listener func(event *htmlevent.MouseEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPaste(listener func(event *clipboard.ClipboardEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPause(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPlay(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPlaying(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerCancel(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerDown(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerEnter(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerLeave(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerMove(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerOut(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerOver(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnPointerUp(listener func(event *htmlevent.PointerEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnProgress(listener func(event *xhr.ProgressEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnRateChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnReset(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnResize(listener func(event *htmlevent.UIEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnScroll(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSecurityPolicyViolation(...) js.Func
- func (_this *HTMLElement) SetOnSeeked(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSeeking(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSelect(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSelectStart(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSelectionChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnStalled(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSubmit(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnSuspend(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTimeUpdate(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnToggle(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTouchCancel(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTouchEnd(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTouchMove(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTouchStart(listener func(event *touchevents.TouchEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTransitionCancel(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTransitionEnd(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTransitionRun(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnTransitionStart(listener func(event *transitions.TransitionEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnVolumeChange(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnWaiting(listener func(event *domcore.Event, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetOnWheel(listener func(event *htmlevent.WheelEvent, currentTarget *HTMLElement)) js.Func
- func (_this *HTMLElement) SetSpellcheck(value bool)
- func (_this *HTMLElement) SetTabIndex(value int)
- func (_this *HTMLElement) SetTitle(value string)
- func (_this *HTMLElement) SetTranslate(value bool)
- func (_this *HTMLElement) Spellcheck() bool
- func (_this *HTMLElement) Style() *cssom.CSSStyleDeclaration
- func (_this *HTMLElement) TabIndex() int
- func (_this *HTMLElement) Title() string
- func (_this *HTMLElement) Translate() bool
- type HTMLFieldSetElement
- func (_this *HTMLFieldSetElement) CheckValidity() (_result bool)
- func (_this *HTMLFieldSetElement) Disabled() bool
- func (_this *HTMLFieldSetElement) Elements() *dom.HTMLCollection
- func (_this *HTMLFieldSetElement) Form() *HTMLFormElement
- func (_this *HTMLFieldSetElement) Name() string
- func (_this *HTMLFieldSetElement) ReportValidity() (_result bool)
- func (_this *HTMLFieldSetElement) SetCustomValidity(_error string)
- func (_this *HTMLFieldSetElement) SetDisabled(value bool)
- func (_this *HTMLFieldSetElement) SetName(value string)
- func (_this *HTMLFieldSetElement) Type() string
- func (_this *HTMLFieldSetElement) ValidationMessage() string
- func (_this *HTMLFieldSetElement) Validity() *ValidityState
- func (_this *HTMLFieldSetElement) WillValidate() bool
- type HTMLFontElement
- type HTMLFormControlsCollection
- type HTMLFormElement
- func (_this *HTMLFormElement) AcceptCharset() string
- func (_this *HTMLFormElement) Action() string
- func (_this *HTMLFormElement) Autocomplete() string
- func (_this *HTMLFormElement) CheckValidity() (_result bool)
- func (_this *HTMLFormElement) Elements() *HTMLFormControlsCollection
- func (_this *HTMLFormElement) Encoding() string
- func (_this *HTMLFormElement) Enctype() string
- func (_this *HTMLFormElement) Get(name string) (_result *Union)
- func (_this *HTMLFormElement) Index(index uint) (_result *dom.Element)
- func (_this *HTMLFormElement) Length() uint
- func (_this *HTMLFormElement) Method() string
- func (_this *HTMLFormElement) Name() string
- func (_this *HTMLFormElement) NoValidate() bool
- func (_this *HTMLFormElement) Rel() string
- func (_this *HTMLFormElement) RelList() *domcore.DOMTokenList
- func (_this *HTMLFormElement) ReportValidity() (_result bool)
- func (_this *HTMLFormElement) Reset()
- func (_this *HTMLFormElement) SetAcceptCharset(value string)
- func (_this *HTMLFormElement) SetAction(value string)
- func (_this *HTMLFormElement) SetAutocomplete(value string)
- func (_this *HTMLFormElement) SetEncoding(value string)
- func (_this *HTMLFormElement) SetEnctype(value string)
- func (_this *HTMLFormElement) SetMethod(value string)
- func (_this *HTMLFormElement) SetName(value string)
- func (_this *HTMLFormElement) SetNoValidate(value bool)
- func (_this *HTMLFormElement) SetRel(value string)
- func (_this *HTMLFormElement) SetTarget(value string)
- func (_this *HTMLFormElement) Submit()
- func (_this *HTMLFormElement) Target() string
- type HTMLFrameSetElement
- func (_this *HTMLFrameSetElement) AddEventAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventBeforeUnload(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventHashChange(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventOffline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventOnline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) AddEventPageHide(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventPageShow(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventPopState(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventRejectionHandled(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventStorage(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventUnhandledRejection(...) js.Func
- func (_this *HTMLFrameSetElement) AddEventUnload(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) Cols() string
- func (_this *HTMLFrameSetElement) OnAfterPrint() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnBeforePrint() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnBeforeUnload() htmlcommon.OnBeforeUnloadEventHandlerFunc
- func (_this *HTMLFrameSetElement) OnHashChange() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnLanguageChange() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnMessage() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnMessageError() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnOffline() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnOnline() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnPageHide() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnPageShow() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnPopState() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnRejectionHandled() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnStorage() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnUnhandledRejection() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) OnUnload() domcore.EventHandlerFunc
- func (_this *HTMLFrameSetElement) Rows() string
- func (_this *HTMLFrameSetElement) SetCols(value string)
- func (_this *HTMLFrameSetElement) SetOnAfterPrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnBeforePrint(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnBeforeUnload(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnHashChange(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnLanguageChange(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnMessage(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnMessageError(listener func(event *channel.MessageEvent, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnOffline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnOnline(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetOnPageHide(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnPageShow(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnPopState(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnRejectionHandled(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnStorage(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnUnhandledRejection(...) js.Func
- func (_this *HTMLFrameSetElement) SetOnUnload(listener func(event *domcore.Event, currentTarget *HTMLFrameSetElement)) js.Func
- func (_this *HTMLFrameSetElement) SetRows(value string)
- type HTMLHRElement
- func (_this *HTMLHRElement) Align() string
- func (_this *HTMLHRElement) Color() string
- func (_this *HTMLHRElement) NoShade() bool
- func (_this *HTMLHRElement) SetAlign(value string)
- func (_this *HTMLHRElement) SetColor(value string)
- func (_this *HTMLHRElement) SetNoShade(value bool)
- func (_this *HTMLHRElement) SetSize(value string)
- func (_this *HTMLHRElement) SetWidth(value string)
- func (_this *HTMLHRElement) Size() string
- func (_this *HTMLHRElement) Width() string
- type HTMLHeadElement
- type HTMLHeadingElement
- type HTMLHtmlElement
- type HTMLImageElement
- func (_this *HTMLImageElement) Align() string
- func (_this *HTMLImageElement) Alt() string
- func (_this *HTMLImageElement) Border() string
- func (_this *HTMLImageElement) Complete() bool
- func (_this *HTMLImageElement) CrossOrigin() *string
- func (_this *HTMLImageElement) CurrentSrc() string
- func (_this *HTMLImageElement) Decode() (_result *javascript.PromiseVoid)
- func (_this *HTMLImageElement) Decoding() string
- func (_this *HTMLImageElement) Height() uint
- func (_this *HTMLImageElement) Hspace() uint
- func (_this *HTMLImageElement) IsMap() bool
- func (_this *HTMLImageElement) LongDesc() string
- func (_this *HTMLImageElement) Lowsrc() string
- func (_this *HTMLImageElement) Name() string
- func (_this *HTMLImageElement) NaturalHeight() uint
- func (_this *HTMLImageElement) NaturalWidth() uint
- func (_this *HTMLImageElement) ReferrerPolicy() string
- func (_this *HTMLImageElement) SetAlign(value string)
- func (_this *HTMLImageElement) SetAlt(value string)
- func (_this *HTMLImageElement) SetBorder(value string)
- func (_this *HTMLImageElement) SetCrossOrigin(value *string)
- func (_this *HTMLImageElement) SetDecoding(value string)
- func (_this *HTMLImageElement) SetHeight(value uint)
- func (_this *HTMLImageElement) SetHspace(value uint)
- func (_this *HTMLImageElement) SetIsMap(value bool)
- func (_this *HTMLImageElement) SetLongDesc(value string)
- func (_this *HTMLImageElement) SetLowsrc(value string)
- func (_this *HTMLImageElement) SetName(value string)
- func (_this *HTMLImageElement) SetReferrerPolicy(value string)
- func (_this *HTMLImageElement) SetSizes(value string)
- func (_this *HTMLImageElement) SetSrc(value string)
- func (_this *HTMLImageElement) SetSrcset(value string)
- func (_this *HTMLImageElement) SetUseMap(value string)
- func (_this *HTMLImageElement) SetVspace(value uint)
- func (_this *HTMLImageElement) SetWidth(value uint)
- func (_this *HTMLImageElement) Sizes() string
- func (_this *HTMLImageElement) Src() string
- func (_this *HTMLImageElement) Srcset() string
- func (_this *HTMLImageElement) UseMap() string
- func (_this *HTMLImageElement) Vspace() uint
- func (_this *HTMLImageElement) Width() uint
- func (_this *HTMLImageElement) X() int
- func (_this *HTMLImageElement) Y() int
- type HTMLInputElement
- func (_this *HTMLInputElement) Accept() string
- func (_this *HTMLInputElement) Align() string
- func (_this *HTMLInputElement) Alt() string
- func (_this *HTMLInputElement) Autocomplete() string
- func (_this *HTMLInputElement) Autofocus() bool
- func (_this *HTMLInputElement) Capture() string
- func (_this *HTMLInputElement) CheckValidity() (_result bool)
- func (_this *HTMLInputElement) Checked() bool
- func (_this *HTMLInputElement) DefaultChecked() bool
- func (_this *HTMLInputElement) DefaultValue() string
- func (_this *HTMLInputElement) DirName() string
- func (_this *HTMLInputElement) Disabled() bool
- func (_this *HTMLInputElement) Files() *file.FileList
- func (_this *HTMLInputElement) Form() *HTMLFormElement
- func (_this *HTMLInputElement) FormAction() string
- func (_this *HTMLInputElement) FormEnctype() string
- func (_this *HTMLInputElement) FormMethod() string
- func (_this *HTMLInputElement) FormNoValidate() bool
- func (_this *HTMLInputElement) FormTarget() string
- func (_this *HTMLInputElement) Height() uint
- func (_this *HTMLInputElement) Indeterminate() bool
- func (_this *HTMLInputElement) Labels() *dom.NodeList
- func (_this *HTMLInputElement) List() *HTMLElement
- func (_this *HTMLInputElement) Max() string
- func (_this *HTMLInputElement) MaxLength() int
- func (_this *HTMLInputElement) Min() string
- func (_this *HTMLInputElement) MinLength() int
- func (_this *HTMLInputElement) Multiple() bool
- func (_this *HTMLInputElement) Name() string
- func (_this *HTMLInputElement) Pattern() string
- func (_this *HTMLInputElement) Placeholder() string
- func (_this *HTMLInputElement) ReadOnly() bool
- func (_this *HTMLInputElement) ReportValidity() (_result bool)
- func (_this *HTMLInputElement) Required() bool
- func (_this *HTMLInputElement) Select()
- func (_this *HTMLInputElement) SelectionDirection() *string
- func (_this *HTMLInputElement) SelectionEnd() *uint
- func (_this *HTMLInputElement) SelectionStart() *uint
- func (_this *HTMLInputElement) SetAccept(value string)
- func (_this *HTMLInputElement) SetAlign(value string)
- func (_this *HTMLInputElement) SetAlt(value string)
- func (_this *HTMLInputElement) SetAutocomplete(value string)
- func (_this *HTMLInputElement) SetAutofocus(value bool)
- func (_this *HTMLInputElement) SetCapture(value string)
- func (_this *HTMLInputElement) SetChecked(value bool)
- func (_this *HTMLInputElement) SetCustomValidity(_error string)
- func (_this *HTMLInputElement) SetDefaultChecked(value bool)
- func (_this *HTMLInputElement) SetDefaultValue(value string)
- func (_this *HTMLInputElement) SetDirName(value string)
- func (_this *HTMLInputElement) SetDisabled(value bool)
- func (_this *HTMLInputElement) SetFiles(value *file.FileList)
- func (_this *HTMLInputElement) SetFormAction(value string)
- func (_this *HTMLInputElement) SetFormEnctype(value string)
- func (_this *HTMLInputElement) SetFormMethod(value string)
- func (_this *HTMLInputElement) SetFormNoValidate(value bool)
- func (_this *HTMLInputElement) SetFormTarget(value string)
- func (_this *HTMLInputElement) SetHeight(value uint)
- func (_this *HTMLInputElement) SetIndeterminate(value bool)
- func (_this *HTMLInputElement) SetMax(value string)
- func (_this *HTMLInputElement) SetMaxLength(value int)
- func (_this *HTMLInputElement) SetMin(value string)
- func (_this *HTMLInputElement) SetMinLength(value int)
- func (_this *HTMLInputElement) SetMultiple(value bool)
- func (_this *HTMLInputElement) SetName(value string)
- func (_this *HTMLInputElement) SetPattern(value string)
- func (_this *HTMLInputElement) SetPlaceholder(value string)
- func (_this *HTMLInputElement) SetRangeText(replacement string)
- func (_this *HTMLInputElement) SetRangeText2(replacement string, start uint, end uint, selectionMode *SelectionMode)
- func (_this *HTMLInputElement) SetReadOnly(value bool)
- func (_this *HTMLInputElement) SetRequired(value bool)
- func (_this *HTMLInputElement) SetSelectionDirection(value *string)
- func (_this *HTMLInputElement) SetSelectionEnd(value *uint)
- func (_this *HTMLInputElement) SetSelectionRange(start uint, end uint, direction *string)
- func (_this *HTMLInputElement) SetSelectionStart(value *uint)
- func (_this *HTMLInputElement) SetSize(value uint)
- func (_this *HTMLInputElement) SetSrc(value string)
- func (_this *HTMLInputElement) SetStep(value string)
- func (_this *HTMLInputElement) SetType(value string)
- func (_this *HTMLInputElement) SetUseMap(value string)
- func (_this *HTMLInputElement) SetValue(value string)
- func (_this *HTMLInputElement) SetValueAsDate(value *javascript.Object)
- func (_this *HTMLInputElement) SetValueAsNumber(value float64)
- func (_this *HTMLInputElement) SetWebkitdirectory(value bool)
- func (_this *HTMLInputElement) SetWidth(value uint)
- func (_this *HTMLInputElement) Size() uint
- func (_this *HTMLInputElement) Src() string
- func (_this *HTMLInputElement) Step() string
- func (_this *HTMLInputElement) StepDown(n *int)
- func (_this *HTMLInputElement) StepUp(n *int)
- func (_this *HTMLInputElement) Type() string
- func (_this *HTMLInputElement) UseMap() string
- func (_this *HTMLInputElement) ValidationMessage() string
- func (_this *HTMLInputElement) Validity() *ValidityState
- func (_this *HTMLInputElement) Value() string
- func (_this *HTMLInputElement) ValueAsDate() *javascript.Object
- func (_this *HTMLInputElement) ValueAsNumber() float64
- func (_this *HTMLInputElement) WebkitEntries() *javascript.FrozenArray
- func (_this *HTMLInputElement) Webkitdirectory() bool
- func (_this *HTMLInputElement) Width() uint
- func (_this *HTMLInputElement) WillValidate() bool
- type HTMLLIElement
- type HTMLLabelElement
- type HTMLLegendElement
- type HTMLLinkElement
- func (_this *HTMLLinkElement) As() string
- func (_this *HTMLLinkElement) Charset() string
- func (_this *HTMLLinkElement) CrossOrigin() *string
- func (_this *HTMLLinkElement) Href() string
- func (_this *HTMLLinkElement) Hreflang() string
- func (_this *HTMLLinkElement) Integrity() string
- func (_this *HTMLLinkElement) Media() string
- func (_this *HTMLLinkElement) ReferrerPolicy() string
- func (_this *HTMLLinkElement) Rel() string
- func (_this *HTMLLinkElement) RelList() *domcore.DOMTokenList
- func (_this *HTMLLinkElement) Rev() string
- func (_this *HTMLLinkElement) SetAs(value string)
- func (_this *HTMLLinkElement) SetCharset(value string)
- func (_this *HTMLLinkElement) SetCrossOrigin(value *string)
- func (_this *HTMLLinkElement) SetHref(value string)
- func (_this *HTMLLinkElement) SetHreflang(value string)
- func (_this *HTMLLinkElement) SetIntegrity(value string)
- func (_this *HTMLLinkElement) SetMedia(value string)
- func (_this *HTMLLinkElement) SetReferrerPolicy(value string)
- func (_this *HTMLLinkElement) SetRel(value string)
- func (_this *HTMLLinkElement) SetRev(value string)
- func (_this *HTMLLinkElement) SetTarget(value string)
- func (_this *HTMLLinkElement) SetType(value string)
- func (_this *HTMLLinkElement) Sheet() *cssom.CSSStyleSheet
- func (_this *HTMLLinkElement) Sizes() *domcore.DOMTokenList
- func (_this *HTMLLinkElement) Target() string
- func (_this *HTMLLinkElement) Type() string
- type HTMLMapElement
- type HTMLMarqueeElement
- func (_this *HTMLMarqueeElement) AddEventBounce(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) AddEventFinish(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) AddEventStart(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) Behavior() string
- func (_this *HTMLMarqueeElement) BgColor() string
- func (_this *HTMLMarqueeElement) Direction() string
- func (_this *HTMLMarqueeElement) Height() string
- func (_this *HTMLMarqueeElement) Hspace() uint
- func (_this *HTMLMarqueeElement) Loop() int
- func (_this *HTMLMarqueeElement) OnBounce() domcore.EventHandlerFunc
- func (_this *HTMLMarqueeElement) OnFinish() domcore.EventHandlerFunc
- func (_this *HTMLMarqueeElement) OnStart() domcore.EventHandlerFunc
- func (_this *HTMLMarqueeElement) ScrollAmount() uint
- func (_this *HTMLMarqueeElement) ScrollDelay() uint
- func (_this *HTMLMarqueeElement) SetBehavior(value string)
- func (_this *HTMLMarqueeElement) SetBgColor(value string)
- func (_this *HTMLMarqueeElement) SetDirection(value string)
- func (_this *HTMLMarqueeElement) SetHeight(value string)
- func (_this *HTMLMarqueeElement) SetHspace(value uint)
- func (_this *HTMLMarqueeElement) SetLoop(value int)
- func (_this *HTMLMarqueeElement) SetOnBounce(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) SetOnFinish(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) SetOnStart(listener func(event *domcore.Event, currentTarget *HTMLMarqueeElement)) js.Func
- func (_this *HTMLMarqueeElement) SetScrollAmount(value uint)
- func (_this *HTMLMarqueeElement) SetScrollDelay(value uint)
- func (_this *HTMLMarqueeElement) SetTrueSpeed(value bool)
- func (_this *HTMLMarqueeElement) SetVspace(value uint)
- func (_this *HTMLMarqueeElement) SetWidth(value string)
- func (_this *HTMLMarqueeElement) Start()
- func (_this *HTMLMarqueeElement) Stop()
- func (_this *HTMLMarqueeElement) TrueSpeed() bool
- func (_this *HTMLMarqueeElement) Vspace() uint
- func (_this *HTMLMarqueeElement) Width() string
- type HTMLMenuElement
- type HTMLMetaElement
- func (_this *HTMLMetaElement) Content() string
- func (_this *HTMLMetaElement) HttpEquiv() string
- func (_this *HTMLMetaElement) Name() string
- func (_this *HTMLMetaElement) Scheme() string
- func (_this *HTMLMetaElement) SetContent(value string)
- func (_this *HTMLMetaElement) SetHttpEquiv(value string)
- func (_this *HTMLMetaElement) SetName(value string)
- func (_this *HTMLMetaElement) SetScheme(value string)
- type HTMLMeterElement
- func (_this *HTMLMeterElement) High() float64
- func (_this *HTMLMeterElement) Labels() *dom.NodeList
- func (_this *HTMLMeterElement) Low() float64
- func (_this *HTMLMeterElement) Max() float64
- func (_this *HTMLMeterElement) Min() float64
- func (_this *HTMLMeterElement) Optimum() float64
- func (_this *HTMLMeterElement) SetHigh(value float64)
- func (_this *HTMLMeterElement) SetLow(value float64)
- func (_this *HTMLMeterElement) SetMax(value float64)
- func (_this *HTMLMeterElement) SetMin(value float64)
- func (_this *HTMLMeterElement) SetOptimum(value float64)
- func (_this *HTMLMeterElement) SetValue(value float64)
- func (_this *HTMLMeterElement) Value() float64
- type HTMLModElement
- type HTMLOListElement
- func (_this *HTMLOListElement) Compact() bool
- func (_this *HTMLOListElement) Reversed() bool
- func (_this *HTMLOListElement) SetCompact(value bool)
- func (_this *HTMLOListElement) SetReversed(value bool)
- func (_this *HTMLOListElement) SetStart(value int)
- func (_this *HTMLOListElement) SetType(value string)
- func (_this *HTMLOListElement) Start() int
- func (_this *HTMLOListElement) Type() string
- type HTMLOptGroupElement
- type HTMLOptionElement
- func (_this *HTMLOptionElement) DefaultSelected() bool
- func (_this *HTMLOptionElement) Disabled() bool
- func (_this *HTMLOptionElement) Form() *HTMLFormElement
- func (_this *HTMLOptionElement) Index() int
- func (_this *HTMLOptionElement) Label() string
- func (_this *HTMLOptionElement) Selected() bool
- func (_this *HTMLOptionElement) SetDefaultSelected(value bool)
- func (_this *HTMLOptionElement) SetDisabled(value bool)
- func (_this *HTMLOptionElement) SetLabel(value string)
- func (_this *HTMLOptionElement) SetSelected(value bool)
- func (_this *HTMLOptionElement) SetText(value string)
- func (_this *HTMLOptionElement) SetValue(value string)
- func (_this *HTMLOptionElement) Text() string
- func (_this *HTMLOptionElement) Value() string
- type HTMLOptionsCollection
- func (_this *HTMLOptionsCollection) Add(element *Union, before *Union)
- func (_this *HTMLOptionsCollection) Length() uint
- func (_this *HTMLOptionsCollection) Remove(index int)
- func (_this *HTMLOptionsCollection) SelectedIndex() int
- func (_this *HTMLOptionsCollection) SetIndex(index uint, option *HTMLOptionElement)
- func (_this *HTMLOptionsCollection) SetLength(value uint)
- func (_this *HTMLOptionsCollection) SetSelectedIndex(value int)
- type HTMLOutputElement
- func (_this *HTMLOutputElement) CheckValidity() (_result bool)
- func (_this *HTMLOutputElement) DefaultValue() string
- func (_this *HTMLOutputElement) Form() *HTMLFormElement
- func (_this *HTMLOutputElement) HtmlFor() *domcore.DOMTokenList
- func (_this *HTMLOutputElement) Labels() *dom.NodeList
- func (_this *HTMLOutputElement) Name() string
- func (_this *HTMLOutputElement) ReportValidity() (_result bool)
- func (_this *HTMLOutputElement) SetCustomValidity(_error string)
- func (_this *HTMLOutputElement) SetDefaultValue(value string)
- func (_this *HTMLOutputElement) SetName(value string)
- func (_this *HTMLOutputElement) SetValue(value string)
- func (_this *HTMLOutputElement) Type() string
- func (_this *HTMLOutputElement) ValidationMessage() string
- func (_this *HTMLOutputElement) Validity() *ValidityState
- func (_this *HTMLOutputElement) Value() string
- func (_this *HTMLOutputElement) WillValidate() bool
- type HTMLParagraphElement
- type HTMLParamElement
- func (_this *HTMLParamElement) Name() string
- func (_this *HTMLParamElement) SetName(value string)
- func (_this *HTMLParamElement) SetType(value string)
- func (_this *HTMLParamElement) SetValue(value string)
- func (_this *HTMLParamElement) SetValueType(value string)
- func (_this *HTMLParamElement) Type() string
- func (_this *HTMLParamElement) Value() string
- func (_this *HTMLParamElement) ValueType() string
- type HTMLPictureElement
- type HTMLPreElement
- type HTMLProgressElement
- func (_this *HTMLProgressElement) Labels() *dom.NodeList
- func (_this *HTMLProgressElement) Max() float64
- func (_this *HTMLProgressElement) Position() float64
- func (_this *HTMLProgressElement) SetMax(value float64)
- func (_this *HTMLProgressElement) SetValue(value float64)
- func (_this *HTMLProgressElement) Value() float64
- type HTMLQuoteElement
- type HTMLScriptElement
- func (_this *HTMLScriptElement) Async() bool
- func (_this *HTMLScriptElement) Charset() string
- func (_this *HTMLScriptElement) CrossOrigin() *string
- func (_this *HTMLScriptElement) Defer() bool
- func (_this *HTMLScriptElement) Event() string
- func (_this *HTMLScriptElement) HtmlFor() string
- func (_this *HTMLScriptElement) Integrity() string
- func (_this *HTMLScriptElement) NoModule() bool
- func (_this *HTMLScriptElement) ReferrerPolicy() string
- func (_this *HTMLScriptElement) SetAsync(value bool)
- func (_this *HTMLScriptElement) SetCharset(value string)
- func (_this *HTMLScriptElement) SetCrossOrigin(value *string)
- func (_this *HTMLScriptElement) SetDefer(value bool)
- func (_this *HTMLScriptElement) SetEvent(value string)
- func (_this *HTMLScriptElement) SetHtmlFor(value string)
- func (_this *HTMLScriptElement) SetIntegrity(value string)
- func (_this *HTMLScriptElement) SetNoModule(value bool)
- func (_this *HTMLScriptElement) SetReferrerPolicy(value string)
- func (_this *HTMLScriptElement) SetSrc(value string)
- func (_this *HTMLScriptElement) SetText(value string)
- func (_this *HTMLScriptElement) SetType(value string)
- func (_this *HTMLScriptElement) Src() string
- func (_this *HTMLScriptElement) Text() string
- func (_this *HTMLScriptElement) Type() string
- type HTMLSelectElement
- func (_this *HTMLSelectElement) Add(element *Union, before *Union)
- func (_this *HTMLSelectElement) Autocomplete() string
- func (_this *HTMLSelectElement) Autofocus() bool
- func (_this *HTMLSelectElement) CheckValidity() (_result bool)
- func (_this *HTMLSelectElement) Disabled() bool
- func (_this *HTMLSelectElement) Form() *HTMLFormElement
- func (_this *HTMLSelectElement) Index(index uint) (_result *dom.Element)
- func (_this *HTMLSelectElement) Item(index uint) (_result *dom.Element)
- func (_this *HTMLSelectElement) Labels() *dom.NodeList
- func (_this *HTMLSelectElement) Length() uint
- func (_this *HTMLSelectElement) Multiple() bool
- func (_this *HTMLSelectElement) Name() string
- func (_this *HTMLSelectElement) NamedItem(name string) (_result *HTMLOptionElement)
- func (_this *HTMLSelectElement) Options() *HTMLOptionsCollection
- func (_this *HTMLSelectElement) Remove2()
- func (_this *HTMLSelectElement) Remove3(index int)
- func (_this *HTMLSelectElement) ReportValidity() (_result bool)
- func (_this *HTMLSelectElement) Required() bool
- func (_this *HTMLSelectElement) SelectedIndex() int
- func (_this *HTMLSelectElement) SelectedOptions() *dom.HTMLCollection
- func (_this *HTMLSelectElement) SetAutocomplete(value string)
- func (_this *HTMLSelectElement) SetAutofocus(value bool)
- func (_this *HTMLSelectElement) SetCustomValidity(_error string)
- func (_this *HTMLSelectElement) SetDisabled(value bool)
- func (_this *HTMLSelectElement) SetIndex(index uint, option *HTMLOptionElement)
- func (_this *HTMLSelectElement) SetLength(value uint)
- func (_this *HTMLSelectElement) SetMultiple(value bool)
- func (_this *HTMLSelectElement) SetName(value string)
- func (_this *HTMLSelectElement) SetRequired(value bool)
- func (_this *HTMLSelectElement) SetSelectedIndex(value int)
- func (_this *HTMLSelectElement) SetSize(value uint)
- func (_this *HTMLSelectElement) SetValue(value string)
- func (_this *HTMLSelectElement) Size() uint
- func (_this *HTMLSelectElement) Type() string
- func (_this *HTMLSelectElement) ValidationMessage() string
- func (_this *HTMLSelectElement) Validity() *ValidityState
- func (_this *HTMLSelectElement) Value() string
- func (_this *HTMLSelectElement) WillValidate() bool
- type HTMLSlotElement
- type HTMLSourceElement
- func (_this *HTMLSourceElement) Media() string
- func (_this *HTMLSourceElement) SetMedia(value string)
- func (_this *HTMLSourceElement) SetSizes(value string)
- func (_this *HTMLSourceElement) SetSrc(value string)
- func (_this *HTMLSourceElement) SetSrcset(value string)
- func (_this *HTMLSourceElement) SetType(value string)
- func (_this *HTMLSourceElement) Sizes() string
- func (_this *HTMLSourceElement) Src() string
- func (_this *HTMLSourceElement) Srcset() string
- func (_this *HTMLSourceElement) Type() string
- type HTMLSpanElement
- type HTMLStyleElement
- type HTMLTableCaptionElement
- type HTMLTableCellElement
- func (_this *HTMLTableCellElement) Abbr() string
- func (_this *HTMLTableCellElement) Align() string
- func (_this *HTMLTableCellElement) Axis() string
- func (_this *HTMLTableCellElement) BgColor() string
- func (_this *HTMLTableCellElement) CellIndex() int
- func (_this *HTMLTableCellElement) Ch() string
- func (_this *HTMLTableCellElement) ChOff() string
- func (_this *HTMLTableCellElement) ColSpan() uint
- func (_this *HTMLTableCellElement) Headers() string
- func (_this *HTMLTableCellElement) Height() string
- func (_this *HTMLTableCellElement) NoWrap() bool
- func (_this *HTMLTableCellElement) RowSpan() uint
- func (_this *HTMLTableCellElement) Scope() string
- func (_this *HTMLTableCellElement) SetAbbr(value string)
- func (_this *HTMLTableCellElement) SetAlign(value string)
- func (_this *HTMLTableCellElement) SetAxis(value string)
- func (_this *HTMLTableCellElement) SetBgColor(value string)
- func (_this *HTMLTableCellElement) SetCh(value string)
- func (_this *HTMLTableCellElement) SetChOff(value string)
- func (_this *HTMLTableCellElement) SetColSpan(value uint)
- func (_this *HTMLTableCellElement) SetHeaders(value string)
- func (_this *HTMLTableCellElement) SetHeight(value string)
- func (_this *HTMLTableCellElement) SetNoWrap(value bool)
- func (_this *HTMLTableCellElement) SetRowSpan(value uint)
- func (_this *HTMLTableCellElement) SetScope(value string)
- func (_this *HTMLTableCellElement) SetVAlign(value string)
- func (_this *HTMLTableCellElement) SetWidth(value string)
- func (_this *HTMLTableCellElement) VAlign() string
- func (_this *HTMLTableCellElement) Width() string
- type HTMLTableColElement
- func (_this *HTMLTableColElement) Align() string
- func (_this *HTMLTableColElement) Ch() string
- func (_this *HTMLTableColElement) ChOff() string
- func (_this *HTMLTableColElement) SetAlign(value string)
- func (_this *HTMLTableColElement) SetCh(value string)
- func (_this *HTMLTableColElement) SetChOff(value string)
- func (_this *HTMLTableColElement) SetSpan(value uint)
- func (_this *HTMLTableColElement) SetVAlign(value string)
- func (_this *HTMLTableColElement) SetWidth(value string)
- func (_this *HTMLTableColElement) Span() uint
- func (_this *HTMLTableColElement) VAlign() string
- func (_this *HTMLTableColElement) Width() string
- type HTMLTableElement
- func (_this *HTMLTableElement) Align() string
- func (_this *HTMLTableElement) BgColor() string
- func (_this *HTMLTableElement) Border() string
- func (_this *HTMLTableElement) Caption() *HTMLTableCaptionElement
- func (_this *HTMLTableElement) CellPadding() string
- func (_this *HTMLTableElement) CellSpacing() string
- func (_this *HTMLTableElement) CreateCaption() (_result *HTMLTableCaptionElement)
- func (_this *HTMLTableElement) CreateTBody() (_result *HTMLTableSectionElement)
- func (_this *HTMLTableElement) CreateTFoot() (_result *HTMLTableSectionElement)
- func (_this *HTMLTableElement) CreateTHead() (_result *HTMLTableSectionElement)
- func (_this *HTMLTableElement) DeleteCaption()
- func (_this *HTMLTableElement) DeleteRow(index int)
- func (_this *HTMLTableElement) DeleteTFoot()
- func (_this *HTMLTableElement) DeleteTHead()
- func (_this *HTMLTableElement) Frame() string
- func (_this *HTMLTableElement) InsertRow(index *int) (_result *HTMLTableRowElement)
- func (_this *HTMLTableElement) Rows() *dom.HTMLCollection
- func (_this *HTMLTableElement) Rules() string
- func (_this *HTMLTableElement) SetAlign(value string)
- func (_this *HTMLTableElement) SetBgColor(value string)
- func (_this *HTMLTableElement) SetBorder(value string)
- func (_this *HTMLTableElement) SetCaption(value *HTMLTableCaptionElement)
- func (_this *HTMLTableElement) SetCellPadding(value string)
- func (_this *HTMLTableElement) SetCellSpacing(value string)
- func (_this *HTMLTableElement) SetFrame(value string)
- func (_this *HTMLTableElement) SetRules(value string)
- func (_this *HTMLTableElement) SetSummary(value string)
- func (_this *HTMLTableElement) SetTFoot(value *HTMLTableSectionElement)
- func (_this *HTMLTableElement) SetTHead(value *HTMLTableSectionElement)
- func (_this *HTMLTableElement) SetWidth(value string)
- func (_this *HTMLTableElement) Summary() string
- func (_this *HTMLTableElement) TBodies() *dom.HTMLCollection
- func (_this *HTMLTableElement) TFoot() *HTMLTableSectionElement
- func (_this *HTMLTableElement) THead() *HTMLTableSectionElement
- func (_this *HTMLTableElement) Width() string
- type HTMLTableRowElement
- func (_this *HTMLTableRowElement) Align() string
- func (_this *HTMLTableRowElement) BgColor() string
- func (_this *HTMLTableRowElement) Cells() *dom.HTMLCollection
- func (_this *HTMLTableRowElement) Ch() string
- func (_this *HTMLTableRowElement) ChOff() string
- func (_this *HTMLTableRowElement) DeleteCell(index int)
- func (_this *HTMLTableRowElement) InsertCell(index *int) (_result *HTMLTableCellElement)
- func (_this *HTMLTableRowElement) RowIndex() int
- func (_this *HTMLTableRowElement) SectionRowIndex() int
- func (_this *HTMLTableRowElement) SetAlign(value string)
- func (_this *HTMLTableRowElement) SetBgColor(value string)
- func (_this *HTMLTableRowElement) SetCh(value string)
- func (_this *HTMLTableRowElement) SetChOff(value string)
- func (_this *HTMLTableRowElement) SetVAlign(value string)
- func (_this *HTMLTableRowElement) VAlign() string
- type HTMLTableSectionElement
- func (_this *HTMLTableSectionElement) Align() string
- func (_this *HTMLTableSectionElement) Ch() string
- func (_this *HTMLTableSectionElement) ChOff() string
- func (_this *HTMLTableSectionElement) DeleteRow(index int)
- func (_this *HTMLTableSectionElement) InsertRow(index *int) (_result *HTMLTableRowElement)
- func (_this *HTMLTableSectionElement) Rows() *dom.HTMLCollection
- func (_this *HTMLTableSectionElement) SetAlign(value string)
- func (_this *HTMLTableSectionElement) SetCh(value string)
- func (_this *HTMLTableSectionElement) SetChOff(value string)
- func (_this *HTMLTableSectionElement) SetVAlign(value string)
- func (_this *HTMLTableSectionElement) VAlign() string
- type HTMLTemplateElement
- type HTMLTextAreaElement
- func (_this *HTMLTextAreaElement) Autocomplete() string
- func (_this *HTMLTextAreaElement) Autofocus() bool
- func (_this *HTMLTextAreaElement) CheckValidity() (_result bool)
- func (_this *HTMLTextAreaElement) Cols() uint
- func (_this *HTMLTextAreaElement) DefaultValue() string
- func (_this *HTMLTextAreaElement) DirName() string
- func (_this *HTMLTextAreaElement) Disabled() bool
- func (_this *HTMLTextAreaElement) Form() *HTMLFormElement
- func (_this *HTMLTextAreaElement) Labels() *dom.NodeList
- func (_this *HTMLTextAreaElement) MaxLength() int
- func (_this *HTMLTextAreaElement) MinLength() int
- func (_this *HTMLTextAreaElement) Name() string
- func (_this *HTMLTextAreaElement) Placeholder() string
- func (_this *HTMLTextAreaElement) ReadOnly() bool
- func (_this *HTMLTextAreaElement) ReportValidity() (_result bool)
- func (_this *HTMLTextAreaElement) Required() bool
- func (_this *HTMLTextAreaElement) Rows() uint
- func (_this *HTMLTextAreaElement) Select()
- func (_this *HTMLTextAreaElement) SelectionDirection() string
- func (_this *HTMLTextAreaElement) SelectionEnd() uint
- func (_this *HTMLTextAreaElement) SelectionStart() uint
- func (_this *HTMLTextAreaElement) SetAutocomplete(value string)
- func (_this *HTMLTextAreaElement) SetAutofocus(value bool)
- func (_this *HTMLTextAreaElement) SetCols(value uint)
- func (_this *HTMLTextAreaElement) SetCustomValidity(_error string)
- func (_this *HTMLTextAreaElement) SetDefaultValue(value string)
- func (_this *HTMLTextAreaElement) SetDirName(value string)
- func (_this *HTMLTextAreaElement) SetDisabled(value bool)
- func (_this *HTMLTextAreaElement) SetMaxLength(value int)
- func (_this *HTMLTextAreaElement) SetMinLength(value int)
- func (_this *HTMLTextAreaElement) SetName(value string)
- func (_this *HTMLTextAreaElement) SetPlaceholder(value string)
- func (_this *HTMLTextAreaElement) SetRangeText(replacement string)
- func (_this *HTMLTextAreaElement) SetRangeText2(replacement string, start uint, end uint, selectionMode *SelectionMode)
- func (_this *HTMLTextAreaElement) SetReadOnly(value bool)
- func (_this *HTMLTextAreaElement) SetRequired(value bool)
- func (_this *HTMLTextAreaElement) SetRows(value uint)
- func (_this *HTMLTextAreaElement) SetSelectionDirection(value string)
- func (_this *HTMLTextAreaElement) SetSelectionEnd(value uint)
- func (_this *HTMLTextAreaElement) SetSelectionRange(start uint, end uint, direction *string)
- func (_this *HTMLTextAreaElement) SetSelectionStart(value uint)
- func (_this *HTMLTextAreaElement) SetValue(value string)
- func (_this *HTMLTextAreaElement) SetWrap(value string)
- func (_this *HTMLTextAreaElement) TextLength() uint
- func (_this *HTMLTextAreaElement) Type() string
- func (_this *HTMLTextAreaElement) ValidationMessage() string
- func (_this *HTMLTextAreaElement) Validity() *ValidityState
- func (_this *HTMLTextAreaElement) Value() string
- func (_this *HTMLTextAreaElement) WillValidate() bool
- func (_this *HTMLTextAreaElement) Wrap() string
- type HTMLTimeElement
- type HTMLTitleElement
- type HTMLUListElement
- type HTMLUnknownElement
- type ImageEncodeOptions
- type OffscreenRenderingContextId
- type PromiseFormData
- func (_this *PromiseFormData) Catch(onRejected *PromiseFormDataOnRejected) (_result *PromiseFormData)
- func (_this *PromiseFormData) Finally(onFinally *javascript.PromiseFinally) (_result *PromiseFormData)
- func (_this *PromiseFormData) JSValue() js.Value
- func (_this *PromiseFormData) Then(onFulfilled *PromiseFormDataOnFulfilled, onRejected *PromiseFormDataOnRejected) (_result *PromiseFormData)
- type PromiseFormDataOnFulfilled
- type PromiseFormDataOnFulfilledFunc
- type PromiseFormDataOnRejected
- type PromiseFormDataOnRejectedFunc
- type SelectionMode
- type TimeRanges
- type Union
- type ValidityState
- func (_this *ValidityState) BadInput() bool
- func (_this *ValidityState) CustomError() bool
- func (_this *ValidityState) JSValue() js.Value
- func (_this *ValidityState) PatternMismatch() bool
- func (_this *ValidityState) RangeOverflow() bool
- func (_this *ValidityState) RangeUnderflow() bool
- func (_this *ValidityState) StepMismatch() bool
- func (_this *ValidityState) TooLong() bool
- func (_this *ValidityState) TooShort() bool
- func (_this *ValidityState) TypeMismatch() bool
- func (_this *ValidityState) Valid() bool
- func (_this *ValidityState) ValueMissing() bool
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 ¶
class: FormData
func FormDataFromJS ¶
FormDataFromJS is casting a js.Value into FormData.
func FormDataFromWrapper ¶
FormDataFromJS is casting from something that holds a js.Value into FormData.
func NewFormData ¶
func NewFormData(form *HTMLFormElement) (_result *FormData)
func (*FormData) Entries ¶
func (_this *FormData) Entries() (_result *FormDataEntryIterator)
func (*FormData) ForEach ¶
func (_this *FormData) ForEach(callback *FormDataForEach, optionalThisForCallbackArgument interface{})
func (*FormData) Keys ¶
func (_this *FormData) Keys() (_result *FormDataKeyIterator)
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 ¶
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 (*HTMLBodyElement) ALink ¶
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 (*HTMLBodyElement) Link ¶
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 ¶
func (_this *HTMLBodyElement) OnBeforeUnload() htmlcommon.OnBeforeUnloadEventHandlerFunc
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 (*HTMLBodyElement) SetALink ¶
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 (*HTMLBodyElement) SetLink ¶
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 (*HTMLBodyElement) SetVLink ¶
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 (*HTMLBodyElement) VLink ¶
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 ¶
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.