Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
nodeInsertBefore :: (IsNode self, IsNode newChild, IsNode refChild) => self -> Maybe newChild -> Maybe refChild -> IO (Maybe Node) Source
nodeReplaceChild :: (IsNode self, IsNode newChild, IsNode oldChild) => self -> Maybe newChild -> Maybe oldChild -> IO (Maybe Node) Source
nodeRemoveChild :: (IsNode self, IsNode oldChild) => self -> Maybe oldChild -> IO (Maybe Node) Source
nodeAppendChild :: (IsNode self, IsNode newChild) => self -> Maybe newChild -> IO (Maybe Node) Source
nodeHasChildNodes :: IsNode self => self -> IO Bool Source
ghcjs_dom_node_normalize :: JSRef Node -> IO () Source
nodeNormalize :: IsNode self => self -> IO () Source
nodeIsSupported :: (IsNode self, ToJSString feature, ToJSString version) => self -> feature -> version -> IO Bool Source
nodeLookupPrefix :: (IsNode self, ToJSString namespaceURI, FromJSString result) => self -> namespaceURI -> IO result Source
nodeIsDefaultNamespace :: (IsNode self, ToJSString namespaceURI) => self -> namespaceURI -> IO Bool Source
nodeLookupNamespaceURI :: (IsNode self, ToJSString prefix, FromJSString result) => self -> prefix -> IO result Source
nodeGetNodeName :: (IsNode self, FromJSString result) => self -> IO result Source
nodeSetNodeValue :: (IsNode self, ToJSString val) => self -> val -> IO () Source
nodeGetNodeValue :: (IsNode self, FromJSString result) => self -> IO result Source
nodeGetNodeType :: IsNode self => self -> IO Word Source
nodeGetNamespaceURI :: (IsNode self, FromJSString result) => self -> IO result Source
nodeSetPrefix :: (IsNode self, ToJSString val) => self -> val -> IO () Source
nodeGetPrefix :: (IsNode self, FromJSString result) => self -> IO result Source
nodeGetLocalName :: (IsNode self, FromJSString result) => self -> IO result Source
nodeGetBaseURI :: (IsNode self, FromJSString result) => self -> IO result Source
nodeSetTextContent :: (IsNode self, ToJSString val) => self -> val -> IO () Source
nodeGetTextContent :: (IsNode self, FromJSString result) => self -> IO result Source
class GObjectClass o => IsNode o Source
castToNode :: GObjectClass obj => obj -> Node Source