Documentation ¶
Index ¶
- Variables
- func GetInterface() js.Value
- type DocumentFragment
- func (d DocumentFragment) Append(elems ...interface{}) error
- func (d DocumentFragment) ChildElementCount() (int, error)
- func (e DocumentFragment) Children() (htmlcollection.HtmlCollection, error)
- func (d DocumentFragment) DocumentFragment_() DocumentFragment
- func (d DocumentFragment) FirstElementChild() (element.Element, error)
- func (d DocumentFragment) GetElementById(id string) (element.Element, error)
- func (d DocumentFragment) LastElementChild() (element.Element, error)
- func (d DocumentFragment) Prepend(elems ...interface{}) error
- func (d DocumentFragment) QuerySelector(selector string) (element.Element, error)
- func (d DocumentFragment) QuerySelectorAll(selector string) (nodelist.NodeList, error)
- func (d DocumentFragment) ReplaceChild(new, old node.Node) (node.Node, error)
- type DocumentFragmentFrom
Constants ¶
This section is empty.
Variables ¶
View Source
var ( //ErrNotImplemented ErrNotImplemented error ErrNotImplemented = errors.New("Browser not implemented DocumentFragment") //ErrNotADocument ErrNotADocument ErrNotADocumentFragment = errors.New("The given value must be a DocumentFragment") )
Functions ¶
func GetInterface ¶
Types ¶
type DocumentFragment ¶
func New ¶
func New() (DocumentFragment, error)
func NewFromJSObject ¶
func NewFromJSObject(obj js.Value) (DocumentFragment, error)
func (DocumentFragment) Append ¶
func (d DocumentFragment) Append(elems ...interface{}) error
func (DocumentFragment) ChildElementCount ¶
func (d DocumentFragment) ChildElementCount() (int, error)
func (DocumentFragment) Children ¶
func (e DocumentFragment) Children() (htmlcollection.HtmlCollection, error)
func (DocumentFragment) DocumentFragment_ ¶
func (d DocumentFragment) DocumentFragment_() DocumentFragment
func (DocumentFragment) FirstElementChild ¶
func (d DocumentFragment) FirstElementChild() (element.Element, error)
func (DocumentFragment) GetElementById ¶
func (d DocumentFragment) GetElementById(id string) (element.Element, error)
func (DocumentFragment) LastElementChild ¶
func (d DocumentFragment) LastElementChild() (element.Element, error)
func (DocumentFragment) Prepend ¶
func (d DocumentFragment) Prepend(elems ...interface{}) error
func (DocumentFragment) QuerySelector ¶
func (d DocumentFragment) QuerySelector(selector string) (element.Element, error)
func (DocumentFragment) QuerySelectorAll ¶
func (d DocumentFragment) QuerySelectorAll(selector string) (nodelist.NodeList, error)
func (DocumentFragment) ReplaceChild ¶
type DocumentFragmentFrom ¶
type DocumentFragmentFrom interface {
DocumentFragment_() DocumentFragment
}
Click to show internal directories.
Click to hide internal directories.