webkitgtk3-0.12.5.1: Binding to the Webkit library.

Safe HaskellNone

Graphics.UI.Gtk.WebKit.DOM.Node

Documentation

nodeInsertBefore :: (NodeClass self, NodeClass newChild, NodeClass refChild) => self -> Maybe newChild -> Maybe refChild -> IO (Maybe Node)Source

nodeReplaceChild :: (NodeClass self, NodeClass newChild, NodeClass oldChild) => self -> Maybe newChild -> Maybe oldChild -> IO (Maybe Node)Source

nodeRemoveChild :: (NodeClass self, NodeClass oldChild) => self -> Maybe oldChild -> IO (Maybe Node)Source

nodeAppendChild :: (NodeClass self, NodeClass newChild) => self -> Maybe newChild -> IO (Maybe Node)Source

nodeHasChildNodes :: NodeClass self => self -> IO BoolSource

nodeCloneNode :: NodeClass self => self -> Bool -> IO (Maybe Node)Source

nodeNormalize :: NodeClass self => self -> IO ()Source

nodeIsSupported :: NodeClass self => self -> String -> String -> IO BoolSource

nodeIsSameNode :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO BoolSource

nodeIsEqualNode :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO BoolSource

nodeLookupPrefix :: NodeClass self => self -> String -> IO StringSource

nodeIsDefaultNamespace :: NodeClass self => self -> String -> IO BoolSource

nodeLookupNamespaceURI :: NodeClass self => self -> String -> IO StringSource

nodeCompareDocumentPosition :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO WordSource

nodeContains :: (NodeClass self, NodeClass other) => self -> Maybe other -> IO BoolSource

nodeDispatchEvent :: (NodeClass self, EventClass event) => self -> Maybe event -> IO BoolSource

cTEXT_NODE :: IntegerSource

nodeGetNodeName :: NodeClass self => self -> IO StringSource

nodeSetNodeValue :: NodeClass self => self -> String -> IO ()Source

nodeGetNodeValue :: NodeClass self => self -> IO StringSource

nodeGetNodeType :: NodeClass self => self -> IO WordSource

nodeGetParentNode :: NodeClass self => self -> IO (Maybe Node)Source

nodeGetChildNodes :: NodeClass self => self -> IO (Maybe NodeList)Source

nodeGetFirstChild :: NodeClass self => self -> IO (Maybe Node)Source

nodeGetLastChild :: NodeClass self => self -> IO (Maybe Node)Source

nodeGetPreviousSibling :: NodeClass self => self -> IO (Maybe Node)Source

nodeGetNextSibling :: NodeClass self => self -> IO (Maybe Node)Source

nodeGetOwnerDocument :: NodeClass self => self -> IO (Maybe Document)Source

nodeGetNamespaceURI :: NodeClass self => self -> IO StringSource

nodeSetPrefix :: NodeClass self => self -> String -> IO ()Source

nodeGetPrefix :: NodeClass self => self -> IO StringSource

nodeGetLocalName :: NodeClass self => self -> IO StringSource

nodeGetBaseURI :: NodeClass self => self -> IO StringSource

nodeSetTextContent :: NodeClass self => self -> String -> IO ()Source

nodeGetTextContent :: NodeClass self => self -> IO StringSource

nodeGetParentElement :: NodeClass self => self -> IO (Maybe Element)Source