Documentation
¶
Overview ¶
Package htmlinterfaces contains internal code representing the IDL interfaces in the HTML DOM API
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type History ¶
type History interface {
Length() int
State() HistoryState
Go(int) error
Back() error
Forward() error
PushState(HistoryState, string) error
ReplaceState(HistoryState, string) error
}
type HistoryState ¶
type HistoryState string
type TimerHandler ¶ added in v0.11.0
type TimerHandler = clock.TaskCallback
type VoidFunction ¶ added in v0.11.0
type VoidFunction = clock.TaskCallback
type WindowOrWorkerGlobalScope ¶ added in v0.11.0
type WindowOrWorkerGlobalScope interface {
SetTimeout(TimerHandler, time.Duration) clock.TaskHandle
ClearTimeout(clock.TaskHandle)
SetInterval(TimerHandler, time.Duration) clock.TaskHandle
ClearInterval(clock.TaskHandle)
QueueMicrotask(VoidFunction)
}
Click to show internal directories.
Click to hide internal directories.