Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
documentCreateElement :: (IsDocument self, ToJSString tagName) => self -> tagName -> IO (Maybe Element) Source
documentCreateDocumentFragment :: IsDocument self => self -> IO (Maybe DocumentFragment) Source
documentCreateTextNode :: (IsDocument self, ToJSString data') => self -> data' -> IO (Maybe Text) Source
documentCreateComment :: (IsDocument self, ToJSString data') => self -> data' -> IO (Maybe Comment) Source
ghcjs_dom_document_create_cdata_section :: JSRef Document -> JSString -> IO (JSRef CDATASection) Source
documentCreateCDATASection :: (IsDocument self, ToJSString data') => self -> data' -> IO (Maybe CDATASection) Source
ghcjs_dom_document_create_processing_instruction :: JSRef Document -> JSString -> JSString -> IO (JSRef ProcessingInstruction) Source
documentCreateProcessingInstruction :: (IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> IO (Maybe ProcessingInstruction) Source
documentCreateAttribute :: (IsDocument self, ToJSString name) => self -> name -> IO (Maybe DOMAttr) Source
ghcjs_dom_document_create_entity_reference :: JSRef Document -> JSString -> IO (JSRef EntityReference) Source
documentCreateEntityReference :: (IsDocument self, ToJSString name) => self -> name -> IO (Maybe EntityReference) Source
ghcjs_dom_document_get_elements_by_tag_name :: JSRef Document -> JSString -> IO (JSRef NodeList) Source
documentGetElementsByTagName :: (IsDocument self, ToJSString tagname) => self -> tagname -> IO (Maybe NodeList) Source
documentImportNode :: (IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> IO (Maybe Node) Source
ghcjs_dom_document_create_element_ns :: JSRef Document -> JSString -> JSString -> IO (JSRef Element) Source
documentCreateElementNS :: (IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> namespaceURI -> qualifiedName -> IO (Maybe Element) Source
ghcjs_dom_document_create_attribute_ns :: JSRef Document -> JSString -> JSString -> IO (JSRef DOMAttr) Source
documentCreateAttributeNS :: (IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> namespaceURI -> qualifiedName -> IO (Maybe DOMAttr) Source
ghcjs_dom_document_get_elements_by_tag_name_ns :: JSRef Document -> JSString -> JSString -> IO (JSRef NodeList) Source
documentGetElementsByTagNameNS :: (IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> namespaceURI -> localName -> IO (Maybe NodeList) Source
documentGetElementById :: (IsDocument self, ToJSString elementId) => self -> elementId -> IO (Maybe Element) Source
documentAdoptNode :: (IsDocument self, IsNode source) => self -> Maybe source -> IO (Maybe Node) Source
documentCreateEvent :: (IsDocument self, ToJSString eventType) => self -> eventType -> IO (Maybe Event) Source
documentCreateRange :: IsDocument self => self -> IO (Maybe DOMRange) Source
ghcjs_dom_document_create_node_iterator :: JSRef Document -> JSRef Node -> Word -> JSRef NodeFilter -> Bool -> IO (JSRef NodeIterator) Source
documentCreateNodeIterator :: (IsDocument self, IsNode root, IsNodeFilter filter) => self -> Maybe root -> Word -> Maybe filter -> Bool -> IO (Maybe NodeIterator) Source
ghcjs_dom_document_create_tree_walker :: JSRef Document -> JSRef Node -> Word -> JSRef NodeFilter -> Bool -> IO (JSRef TreeWalker) Source
documentCreateTreeWalker :: (IsDocument self, IsNode root, IsNodeFilter filter) => self -> Maybe root -> Word -> Maybe filter -> Bool -> IO (Maybe TreeWalker) Source
ghcjs_dom_document_get_override_style :: JSRef Document -> JSRef Element -> JSString -> IO (JSRef CSSStyleDeclaration) Source
documentGetOverrideStyle :: (IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> IO (Maybe CSSStyleDeclaration) Source
ghcjs_dom_document_create_expression :: JSRef Document -> JSString -> JSRef XPathNSResolver -> IO (JSRef XPathExpression) Source
documentCreateExpression :: (IsDocument self, ToJSString expression, IsXPathNSResolver resolver) => self -> expression -> Maybe resolver -> IO (Maybe XPathExpression) Source
ghcjs_dom_document_create_ns_resolver :: JSRef Document -> JSRef Node -> IO (JSRef XPathNSResolver) Source
documentCreateNSResolver :: (IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> IO (Maybe XPathNSResolver) Source
ghcjs_dom_document_evaluate :: JSRef Document -> JSString -> JSRef Node -> JSRef XPathNSResolver -> Word -> JSRef XPathResult -> IO (JSRef XPathResult) Source
documentEvaluate :: (IsDocument self, ToJSString expression, IsNode contextNode, IsXPathNSResolver resolver, IsXPathResult inResult) => self -> expression -> Maybe contextNode -> Maybe resolver -> Word -> Maybe inResult -> IO (Maybe XPathResult) Source
documentExecCommand :: (IsDocument self, ToJSString command, ToJSString value) => self -> command -> Bool -> value -> IO Bool Source
documentQueryCommandEnabled :: (IsDocument self, ToJSString command) => self -> command -> IO Bool Source
documentQueryCommandIndeterm :: (IsDocument self, ToJSString command) => self -> command -> IO Bool Source
documentQueryCommandState :: (IsDocument self, ToJSString command) => self -> command -> IO Bool Source
documentQueryCommandSupported :: (IsDocument self, ToJSString command) => self -> command -> IO Bool Source
documentQueryCommandValue :: (IsDocument self, ToJSString command, FromJSString result) => self -> command -> IO result Source
documentGetElementsByName :: (IsDocument self, ToJSString elementName) => self -> elementName -> IO (Maybe NodeList) Source
documentElementFromPoint :: IsDocument self => self -> Int -> Int -> IO (Maybe Element) Source
ghcjs_dom_document_caret_range_from_point :: JSRef Document -> Int -> Int -> IO (JSRef DOMRange) Source
documentCaretRangeFromPoint :: IsDocument self => self -> Int -> Int -> IO (Maybe DOMRange) Source
ghcjs_dom_document_create_css_style_declaration :: JSRef Document -> IO (JSRef CSSStyleDeclaration) Source
documentCreateCSSStyleDeclaration :: IsDocument self => self -> IO (Maybe CSSStyleDeclaration) Source
ghcjs_dom_document_get_elements_by_class_name :: JSRef Document -> JSString -> IO (JSRef NodeList) Source
documentGetElementsByClassName :: (IsDocument self, ToJSString tagname) => self -> tagname -> IO (Maybe NodeList) Source
documentHasFocus :: IsDocument self => self -> IO Bool Source
documentQuerySelector :: (IsDocument self, ToJSString selectors) => self -> selectors -> IO (Maybe Element) Source
documentQuerySelectorAll :: (IsDocument self, ToJSString selectors) => self -> selectors -> IO (Maybe NodeList) Source
documentExitPointerLock :: IsDocument self => self -> IO () Source
ghcjs_dom_document_webkit_get_named_flows :: JSRef Document -> IO (JSRef DOMNamedFlowCollection) Source
documentWebkitGetNamedFlows :: IsDocument self => self -> IO (Maybe DOMNamedFlowCollection) Source
documentGetDoctype :: IsDocument self => self -> IO (Maybe DocumentType) Source
documentGetImplementation :: IsDocument self => self -> IO (Maybe DOMImplementation) Source
documentGetDocumentElement :: IsDocument self => self -> IO (Maybe Element) Source
documentGetInputEncoding :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetXmlEncoding :: (IsDocument self, FromJSString result) => self -> IO result Source
documentSetXmlVersion :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetXmlVersion :: (IsDocument self, FromJSString result) => self -> IO result Source
documentSetXmlStandalone :: IsDocument self => self -> Bool -> IO () Source
documentGetXmlStandalone :: IsDocument self => self -> IO Bool Source
documentSetDocumentURI :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetDocumentURI :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetDefaultView :: IsDocument self => self -> IO (Maybe DOMWindow) Source
documentGetStyleSheets :: IsDocument self => self -> IO (Maybe StyleSheetList) Source
documentSetTitle :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetTitle :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetReferrer :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetDomain :: (IsDocument self, FromJSString result) => self -> IO result Source
documentSetCookie :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetCookie :: (IsDocument self, FromJSString result) => self -> IO result Source
ghcjs_dom_document_set_body :: JSRef Document -> JSRef HTMLElement -> IO () Source
documentSetBody :: (IsDocument self, IsHTMLElement val) => self -> Maybe val -> IO () Source
documentGetBody :: IsDocument self => self -> IO (Maybe HTMLElement) Source
documentGetHead :: IsDocument self => self -> IO (Maybe HTMLHeadElement) Source
documentGetImages :: IsDocument self => self -> IO (Maybe HTMLCollection) Source
documentGetApplets :: IsDocument self => self -> IO (Maybe HTMLCollection) Source
documentGetLinks :: IsDocument self => self -> IO (Maybe HTMLCollection) Source
documentGetForms :: IsDocument self => self -> IO (Maybe HTMLCollection) Source
documentGetAnchors :: IsDocument self => self -> IO (Maybe HTMLCollection) Source
documentGetLastModified :: (IsDocument self, FromJSString result) => self -> IO result Source
documentSetCharset :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetCharset :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetDefaultCharset :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetReadyState :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetCharacterSet :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetPreferredStylesheetSet :: (IsDocument self, FromJSString result) => self -> IO result Source
documentSetSelectedStylesheetSet :: (IsDocument self, ToJSString val) => self -> val -> IO () Source
documentGetSelectedStylesheetSet :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetActiveElement :: IsDocument self => self -> IO (Maybe Element) Source
documentGetCompatMode :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetPointerLockElement :: IsDocument self => self -> IO (Maybe Element) Source
documentGetVisibilityState :: (IsDocument self, FromJSString result) => self -> IO result Source
documentGetHidden :: IsDocument self => self -> IO Bool Source
documentGetSecurityPolicy :: IsDocument self => self -> IO (Maybe DOMSecurityPolicy) Source
documentGetCurrentScript :: IsDocument self => self -> IO (Maybe HTMLScriptElement) Source
documentGetOrigin :: (IsDocument self, FromJSString result) => self -> IO result Source
class IsNode o => IsDocument o Source
castToDocument :: GObjectClass obj => obj -> Document Source
toDocument :: IsDocument o => o -> Document Source