Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
- Exported types
- Methods
- adoptNode
- caretRangeFromPoint
- createAttribute
- createAttributeNs
- createCdataSection
- createComment
- createCssStyleDeclaration
- createDocumentFragment
- createElement
- createElementNs
- createEntityReference
- createEvent
- createExpression
- createNodeIterator
- createNsResolver
- createProcessingInstruction
- createRange
- createTextNode
- createTreeWalker
- elementFromPoint
- evaluate
- execCommand
- exitPointerLock
- getActiveElement
- getAnchors
- getApplets
- getBody
- getCharacterSet
- getCharset
- getChildElementCount
- getChildren
- getCompatMode
- getContentType
- getCookie
- getCurrentScript
- getDefaultCharset
- getDefaultView
- getDesignMode
- getDir
- getDoctype
- getDocumentElement
- getDocumentUri
- getDomain
- getElementById
- getElementsByClassName
- getElementsByClassNameAsHtmlCollection
- getElementsByName
- getElementsByTagName
- getElementsByTagNameAsHtmlCollection
- getElementsByTagNameNs
- getElementsByTagNameNsAsHtmlCollection
- getEmbeds
- getFirstElementChild
- getForms
- getHead
- getHidden
- getImages
- getImplementation
- getInputEncoding
- getLastElementChild
- getLastModified
- getLinks
- getOrigin
- getOverrideStyle
- getPlugins
- getPointerLockElement
- getPreferredStylesheetSet
- getReadyState
- getReferrer
- getScripts
- getScrollingElement
- getSelectedStylesheetSet
- getStyleSheets
- getTitle
- getUrl
- getVisibilityState
- getWebkitCurrentFullscreenElement
- getWebkitFullscreenElement
- getWebkitFullscreenEnabled
- getWebkitFullscreenKeyboardInputAllowed
- getWebkitIsFullscreen
- getXmlEncoding
- getXmlStandalone
- getXmlVersion
- hasFocus
- importNode
- queryCommandEnabled
- queryCommandIndeterm
- queryCommandState
- queryCommandSupported
- queryCommandValue
- querySelector
- querySelectorAll
- setBody
- setCharset
- setCookie
- setDesignMode
- setDir
- setDocumentUri
- setSelectedStylesheetSet
- setTitle
- setXmlStandalone
- setXmlVersion
- webkitCancelFullscreen
- webkitExitFullscreen
- Properties
- activeElement
- anchors
- applets
- body
- characterSet
- charset
- childElementCount
- children
- compatMode
- contentType
- cookie
- currentScript
- defaultView
- designMode
- dir
- doctype
- documentElement
- documentUri
- domain
- embeds
- firstElementChild
- forms
- head
- hidden
- images
- implementation
- inputEncoding
- lastElementChild
- lastModified
- links
- origin
- plugins
- pointerLockElement
- preferredStylesheetSet
- readyState
- referrer
- scripts
- scrollingElement
- selectedStylesheetSet
- styleSheets
- title
- url
- visibilityState
- webkitCurrentFullScreenElement
- webkitFullScreenKeyboardInputAllowed
- webkitFullscreenElement
- webkitFullscreenEnabled
- webkitIsFullScreen
- xmlEncoding
- xmlStandalone
- xmlVersion
No description available in the introspection data.
Synopsis
- newtype DOMDocument = DOMDocument (ManagedPtr DOMDocument)
- class (GObject o, IsDescendantOf DOMDocument o) => IsDOMDocument o
- toDOMDocument :: (MonadIO m, IsDOMDocument o) => o -> m DOMDocument
- dOMDocumentAdoptNode :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) => a -> b -> m DOMNode
- dOMDocumentCaretRangeFromPoint :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> CLong -> CLong -> m DOMRange
- dOMDocumentCreateAttribute :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMAttr
- dOMDocumentCreateAttributeNs :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Maybe Text -> Text -> m DOMAttr
- dOMDocumentCreateCdataSection :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMCDATASection
- dOMDocumentCreateComment :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMComment
- dOMDocumentCreateCssStyleDeclaration :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMCSSStyleDeclaration
- dOMDocumentCreateDocumentFragment :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMDocumentFragment
- dOMDocumentCreateElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMElement
- dOMDocumentCreateElementNs :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Maybe Text -> Text -> m DOMElement
- dOMDocumentCreateEntityReference :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Maybe Text -> m DOMEntityReference
- dOMDocumentCreateEvent :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMEvent
- dOMDocumentCreateExpression :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMXPathNSResolver b) => a -> Text -> b -> m DOMXPathExpression
- dOMDocumentCreateNodeIterator :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) => a -> b -> CULong -> Maybe c -> Bool -> m DOMNodeIterator
- dOMDocumentCreateNsResolver :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) => a -> b -> m DOMXPathNSResolver
- dOMDocumentCreateProcessingInstruction :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> Text -> m DOMProcessingInstruction
- dOMDocumentCreateRange :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMRange
- dOMDocumentCreateTextNode :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMText
- dOMDocumentCreateTreeWalker :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) => a -> b -> CULong -> Maybe c -> Bool -> m DOMTreeWalker
- dOMDocumentElementFromPoint :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> CLong -> CLong -> m DOMElement
- dOMDocumentEvaluate :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMXPathNSResolver c, IsDOMXPathResult d) => a -> Text -> b -> Maybe c -> Word16 -> Maybe d -> m DOMXPathResult
- dOMDocumentExecCommand :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> Bool -> Text -> m Bool
- dOMDocumentExitPointerLock :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m ()
- dOMDocumentGetActiveElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetAnchors :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetApplets :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetBody :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLElement
- dOMDocumentGetCharacterSet :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetCharset :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetChildElementCount :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m CULong
- dOMDocumentGetChildren :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetCompatMode :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetContentType :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetCookie :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetCurrentScript :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLScriptElement
- dOMDocumentGetDefaultCharset :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetDefaultView :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMDOMWindow
- dOMDocumentGetDesignMode :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetDir :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetDoctype :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMDocumentType
- dOMDocumentGetDocumentElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetDocumentUri :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetDomain :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetElementById :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMElement
- dOMDocumentGetElementsByClassName :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMNodeList
- dOMDocumentGetElementsByClassNameAsHtmlCollection :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMHTMLCollection
- dOMDocumentGetElementsByName :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMNodeList
- dOMDocumentGetElementsByTagName :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMNodeList
- dOMDocumentGetElementsByTagNameAsHtmlCollection :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMHTMLCollection
- dOMDocumentGetElementsByTagNameNs :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> Text -> m DOMNodeList
- dOMDocumentGetElementsByTagNameNsAsHtmlCollection :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> Text -> m DOMHTMLCollection
- dOMDocumentGetEmbeds :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetFirstElementChild :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetForms :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetHead :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLHeadElement
- dOMDocumentGetHidden :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentGetImages :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetImplementation :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMDOMImplementation
- dOMDocumentGetInputEncoding :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetLastElementChild :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetLastModified :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetLinks :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetOrigin :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetOverrideStyle :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMElement b) => a -> b -> Maybe Text -> m DOMCSSStyleDeclaration
- dOMDocumentGetPlugins :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetPointerLockElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetPreferredStylesheetSet :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetReadyState :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetReferrer :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetScripts :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMHTMLCollection
- dOMDocumentGetScrollingElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetSelectedStylesheetSet :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetStyleSheets :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMStyleSheetList
- dOMDocumentGetTitle :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetUrl :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetVisibilityState :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetWebkitCurrentFullscreenElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetWebkitFullscreenElement :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m DOMElement
- dOMDocumentGetWebkitFullscreenEnabled :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentGetWebkitFullscreenKeyboardInputAllowed :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentGetWebkitIsFullscreen :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentGetXmlEncoding :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentGetXmlStandalone :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentGetXmlVersion :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Text
- dOMDocumentHasFocus :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m Bool
- dOMDocumentImportNode :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) => a -> b -> Bool -> m DOMNode
- dOMDocumentQueryCommandEnabled :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m Bool
- dOMDocumentQueryCommandIndeterm :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m Bool
- dOMDocumentQueryCommandState :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m Bool
- dOMDocumentQueryCommandSupported :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m Bool
- dOMDocumentQueryCommandValue :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m Text
- dOMDocumentQuerySelector :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMElement
- dOMDocumentQuerySelectorAll :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m DOMNodeList
- dOMDocumentSetBody :: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMHTMLElement b) => a -> b -> m ()
- dOMDocumentSetCharset :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetCookie :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetDesignMode :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetDir :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetDocumentUri :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetSelectedStylesheetSet :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetTitle :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentSetXmlStandalone :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Bool -> m ()
- dOMDocumentSetXmlVersion :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> Text -> m ()
- dOMDocumentWebkitCancelFullscreen :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m ()
- dOMDocumentWebkitExitFullscreen :: (HasCallStack, MonadIO m, IsDOMDocument a) => a -> m ()
- getDOMDocumentActiveElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- getDOMDocumentAnchors :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentApplets :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentBody :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLElement
- getDOMDocumentCharacterSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- constructDOMDocumentCharset :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentCharset :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentCharset :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentChildElementCount :: (MonadIO m, IsDOMDocument o) => o -> m CULong
- getDOMDocumentChildren :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentCompatMode :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentContentType :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- clearDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> m ()
- constructDOMDocumentCookie :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentCurrentScript :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLScriptElement
- getDOMDocumentDefaultView :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMDOMWindow)
- constructDOMDocumentDesignMode :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentDesignMode :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentDesignMode :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- constructDOMDocumentDir :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentDir :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentDir :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentDoctype :: (MonadIO m, IsDOMDocument o) => o -> m DOMDocumentType
- getDOMDocumentDocumentElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- constructDOMDocumentDocumentUri :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentDocumentUri :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentDocumentUri :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentDomain :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentEmbeds :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentFirstElementChild :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- getDOMDocumentForms :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentHead :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLHeadElement
- getDOMDocumentHidden :: (MonadIO m, IsDOMDocument o) => o -> m Bool
- getDOMDocumentImages :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentImplementation :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMDOMImplementation)
- getDOMDocumentInputEncoding :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentLastElementChild :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- getDOMDocumentLastModified :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentLinks :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentOrigin :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentPlugins :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentPointerLockElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- getDOMDocumentPreferredStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentReadyState :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentReferrer :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentScripts :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection)
- getDOMDocumentScrollingElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- constructDOMDocumentSelectedStylesheetSet :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentSelectedStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentSelectedStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentStyleSheets :: (MonadIO m, IsDOMDocument o) => o -> m DOMStyleSheetList
- constructDOMDocumentTitle :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentTitle :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentTitle :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
- getDOMDocumentUrl :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentVisibilityState :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- getDOMDocumentWebkitCurrentFullScreenElement :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMElement)
- getDOMDocumentWebkitFullScreenKeyboardInputAllowed :: (MonadIO m, IsDOMDocument o) => o -> m Bool
- getDOMDocumentWebkitFullscreenElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement
- getDOMDocumentWebkitFullscreenEnabled :: (MonadIO m, IsDOMDocument o) => o -> m Bool
- getDOMDocumentWebkitIsFullScreen :: (MonadIO m, IsDOMDocument o) => o -> m Bool
- getDOMDocumentXmlEncoding :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- constructDOMDocumentXmlStandalone :: (IsDOMDocument o, MonadIO m) => Bool -> m (GValueConstruct o)
- getDOMDocumentXmlStandalone :: (MonadIO m, IsDOMDocument o) => o -> m Bool
- setDOMDocumentXmlStandalone :: (MonadIO m, IsDOMDocument o) => o -> Bool -> m ()
- clearDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> m ()
- constructDOMDocumentXmlVersion :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o)
- getDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text)
- setDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> Text -> m ()
Exported types
newtype DOMDocument Source #
Memory-managed wrapper type.
DOMDocument (ManagedPtr DOMDocument) |
Instances
Eq DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument (==) :: DOMDocument -> DOMDocument -> Bool # (/=) :: DOMDocument -> DOMDocument -> Bool # | |
GObject DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument | |
ManagedPtrNewtype DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument toManagedPtr :: DOMDocument -> ManagedPtr DOMDocument | |
TypedObject DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument | |
HasParentTypes DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument | |
IsGValue (Maybe DOMDocument) Source # | Convert |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe DOMDocument -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe DOMDocument) | |
type ParentTypes DOMDocument Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument |
class (GObject o, IsDescendantOf DOMDocument o) => IsDOMDocument o Source #
Type class for types which can be safely cast to DOMDocument
, for instance with toDOMDocument
.
Instances
(GObject o, IsDescendantOf DOMDocument o) => IsDOMDocument o Source # | |
Defined in GI.WebKit2WebExtension.Objects.DOMDocument |
toDOMDocument :: (MonadIO m, IsDOMDocument o) => o -> m DOMDocument Source #
Cast to DOMDocument
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
Click to display all available methods, including inherited ones
Methods
addEventListener, adoptNode, appendChild, bindProperty, bindPropertyFull, caretRangeFromPoint, cloneNodeWithError, compareDocumentPosition, contains, createAttribute, createAttributeNs, createCdataSection, createComment, createCssStyleDeclaration, createDocumentFragment, createElement, createElementNs, createEntityReference, createEvent, createExpression, createNodeIterator, createNsResolver, createProcessingInstruction, createRange, createTextNode, createTreeWalker, dispatchEvent, elementFromPoint, evaluate, execCommand, exitPointerLock, forceFloating, freezeNotify, getv, hasChildNodes, hasFocus, importNode, insertBefore, isDefaultNamespace, isEqualNode, isFloating, isSameNode, isSupported, lookupNamespaceUri, lookupPrefix, normalize, notify, notifyByPspec, queryCommandEnabled, queryCommandIndeterm, queryCommandState, queryCommandSupported, queryCommandValue, querySelector, querySelectorAll, ref, refSink, removeChild, removeEventListener, replaceChild, runDispose, stealData, stealQdata, thawNotify, unref, watchClosure, webkitCancelFullscreen, webkitExitFullscreen.
Getters
getActiveElement, getAnchors, getApplets, getBaseUri, getBody, getCharacterSet, getCharset, getChildElementCount, getChildNodes, getChildren, getCompatMode, getContentType, getCookie, getCurrentScript, getData, getDefaultCharset, getDefaultView, getDesignMode, getDir, getDoctype, getDocumentElement, getDocumentUri, getDomain, getElementById, getElementsByClassName, getElementsByClassNameAsHtmlCollection, getElementsByName, getElementsByTagName, getElementsByTagNameAsHtmlCollection, getElementsByTagNameNs, getElementsByTagNameNsAsHtmlCollection, getEmbeds, getFirstChild, getFirstElementChild, getForms, getHead, getHidden, getImages, getImplementation, getInputEncoding, getLastChild, getLastElementChild, getLastModified, getLinks, getLocalName, getNamespaceUri, getNextSibling, getNodeName, getNodeType, getNodeValue, getOrigin, getOverrideStyle, getOwnerDocument, getParentElement, getParentNode, getPlugins, getPointerLockElement, getPreferredStylesheetSet, getPrefix, getPreviousSibling, getProperty, getQdata, getReadyState, getReferrer, getScripts, getScrollingElement, getSelectedStylesheetSet, getStyleSheets, getTextContent, getTitle, getUrl, getVisibilityState, getWebkitCurrentFullscreenElement, getWebkitFullscreenElement, getWebkitFullscreenEnabled, getWebkitFullscreenKeyboardInputAllowed, getWebkitIsFullscreen, getXmlEncoding, getXmlStandalone, getXmlVersion.
Setters
setBody, setCharset, setCookie, setData, setDataFull, setDesignMode, setDir, setDocumentUri, setNodeValue, setPrefix, setProperty, setSelectedStylesheetSet, setTextContent, setTitle, setXmlStandalone, setXmlVersion.
adoptNode
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) | |
=> a |
|
-> b |
|
-> m DOMNode |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
caretRangeFromPoint
dOMDocumentCaretRangeFromPoint Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> CLong |
|
-> CLong |
|
-> m DOMRange | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
createAttribute
dOMDocumentCreateAttribute Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMAttr |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createAttributeNs
dOMDocumentCreateAttributeNs Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Maybe Text |
|
-> Text |
|
-> m DOMAttr |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createCdataSection
dOMDocumentCreateCdataSection Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMCDATASection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createComment
dOMDocumentCreateComment Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMComment | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createCssStyleDeclaration
dOMDocumentCreateCssStyleDeclaration Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMCSSStyleDeclaration | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createDocumentFragment
dOMDocumentCreateDocumentFragment Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMDocumentFragment | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createElement
dOMDocumentCreateElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createElementNs
dOMDocumentCreateElementNs Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Maybe Text |
|
-> Text |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createEntityReference
dOMDocumentCreateEntityReference Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Maybe Text |
|
-> m DOMEntityReference | Returns: A |
Deprecated: (Since version 2.12)
This function has been removed from the DOM spec and it just returns Nothing
.
createEvent
dOMDocumentCreateEvent Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMEvent |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createExpression
dOMDocumentCreateExpression Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMXPathNSResolver b) | |
=> a |
|
-> Text |
|
-> b |
|
-> m DOMXPathExpression | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createNodeIterator
dOMDocumentCreateNodeIterator Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) | |
=> a |
|
-> b |
|
-> CULong |
|
-> Maybe c |
|
-> Bool |
|
-> m DOMNodeIterator | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createNsResolver
dOMDocumentCreateNsResolver Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) | |
=> a |
|
-> b |
|
-> m DOMXPathNSResolver | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createProcessingInstruction
dOMDocumentCreateProcessingInstruction Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> Text |
|
-> m DOMProcessingInstruction | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createRange
dOMDocumentCreateRange Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMRange | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createTextNode
dOMDocumentCreateTextNode Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMText | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
createTreeWalker
dOMDocumentCreateTreeWalker Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) | |
=> a |
|
-> b |
|
-> CULong |
|
-> Maybe c |
|
-> Bool |
|
-> m DOMTreeWalker | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
elementFromPoint
dOMDocumentElementFromPoint Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> CLong |
|
-> CLong |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
evaluate
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMXPathNSResolver c, IsDOMXPathResult d) | |
=> a |
|
-> Text |
|
-> b |
|
-> Maybe c |
|
-> Word16 |
|
-> Maybe d |
|
-> m DOMXPathResult | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
execCommand
dOMDocumentExecCommand Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> Bool |
|
-> Text |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
exitPointerLock
dOMDocumentExitPointerLock Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getActiveElement
dOMDocumentGetActiveElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getAnchors
dOMDocumentGetAnchors Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getApplets
dOMDocumentGetApplets Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getBody
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getCharacterSet
dOMDocumentGetCharacterSet Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getCharset
dOMDocumentGetCharset Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getChildElementCount
dOMDocumentGetChildElementCount Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m CULong | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getChildren
dOMDocumentGetChildren Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getCompatMode
dOMDocumentGetCompatMode Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
getContentType
dOMDocumentGetContentType Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getCookie
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getCurrentScript
dOMDocumentGetCurrentScript Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLScriptElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getDefaultCharset
dOMDocumentGetDefaultCharset Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.14)
No description available in the introspection data.
getDefaultView
dOMDocumentGetDefaultView Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMDOMWindow | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDesignMode
dOMDocumentGetDesignMode Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
getDir
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getDoctype
dOMDocumentGetDoctype Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMDocumentType | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDocumentElement
dOMDocumentGetDocumentElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDocumentUri
dOMDocumentGetDocumentUri Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getDomain
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getElementById
dOMDocumentGetElementById Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getElementsByClassName
dOMDocumentGetElementsByClassName Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMNodeList | Returns: a |
Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByClassNameAsHtmlCollection
instead.
No description available in the introspection data.
getElementsByClassNameAsHtmlCollection
dOMDocumentGetElementsByClassNameAsHtmlCollection Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.12
getElementsByName
dOMDocumentGetElementsByName Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMNodeList | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getElementsByTagName
dOMDocumentGetElementsByTagName Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMNodeList | Returns: a |
Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByTagNameAsHtmlCollection
instead.
No description available in the introspection data.
getElementsByTagNameAsHtmlCollection
dOMDocumentGetElementsByTagNameAsHtmlCollection Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.12
getElementsByTagNameNs
dOMDocumentGetElementsByTagNameNs Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> Text |
|
-> m DOMNodeList | Returns: a |
Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByTagNameNsAsHtmlCollection
instead.
No description available in the introspection data.
getElementsByTagNameNsAsHtmlCollection
dOMDocumentGetElementsByTagNameNsAsHtmlCollection Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> Text |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.12
getEmbeds
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
getFirstElementChild
dOMDocumentGetFirstElementChild Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getForms
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getHead
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLHeadElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getHidden
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getImages
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getImplementation
dOMDocumentGetImplementation Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMDOMImplementation | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getInputEncoding
dOMDocumentGetInputEncoding Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getLastElementChild
dOMDocumentGetLastElementChild Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getLastModified
dOMDocumentGetLastModified Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getLinks
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getOrigin
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getOverrideStyle
dOMDocumentGetOverrideStyle Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMElement b) | |
=> a |
|
-> b |
|
-> Maybe Text |
|
-> m DOMCSSStyleDeclaration | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getPlugins
dOMDocumentGetPlugins Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
getPointerLockElement
dOMDocumentGetPointerLockElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getPreferredStylesheetSet
dOMDocumentGetPreferredStylesheetSet Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
This function has been removed and does nothing.
getReadyState
dOMDocumentGetReadyState Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getReferrer
dOMDocumentGetReferrer Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getScripts
dOMDocumentGetScripts Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMHTMLCollection | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
getScrollingElement
dOMDocumentGetScrollingElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getSelectedStylesheetSet
dOMDocumentGetSelectedStylesheetSet Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
This function has been removed and does nothing.
getStyleSheets
dOMDocumentGetStyleSheets Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMStyleSheetList | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getTitle
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getUrl
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getVisibilityState
dOMDocumentGetVisibilityState Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitCurrentFullscreenElement
dOMDocumentGetWebkitCurrentFullscreenElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitFullscreenElement
dOMDocumentGetWebkitFullscreenElement Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitFullscreenEnabled
dOMDocumentGetWebkitFullscreenEnabled Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitFullscreenKeyboardInputAllowed
dOMDocumentGetWebkitFullscreenKeyboardInputAllowed Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getWebkitIsFullscreen
dOMDocumentGetWebkitIsFullscreen Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
getXmlEncoding
dOMDocumentGetXmlEncoding Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getXmlStandalone
dOMDocumentGetXmlStandalone Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
getXmlVersion
dOMDocumentGetXmlVersion Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
hasFocus
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
importNode
dOMDocumentImportNode Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) | |
=> a |
|
-> b |
|
-> Bool |
|
-> m DOMNode |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
queryCommandEnabled
dOMDocumentQueryCommandEnabled Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
queryCommandIndeterm
dOMDocumentQueryCommandIndeterm Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
queryCommandState
dOMDocumentQueryCommandState Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
queryCommandSupported
dOMDocumentQueryCommandSupported Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m Bool | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
queryCommandValue
dOMDocumentQueryCommandValue Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m Text | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
querySelector
dOMDocumentQuerySelector Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMElement | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
querySelectorAll
dOMDocumentQuerySelectorAll Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m DOMNodeList | Returns: A |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setBody
:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMHTMLElement b) | |
=> a |
|
-> b |
|
-> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setCharset
dOMDocumentSetCharset Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setCookie
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setDesignMode
dOMDocumentSetDesignMode Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.14
setDir
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
setDocumentUri
dOMDocumentSetDocumentUri Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setSelectedStylesheetSet
dOMDocumentSetSelectedStylesheetSet Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
This function has been removed and does nothing.
setTitle
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setXmlStandalone
dOMDocumentSetXmlStandalone Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Bool |
|
-> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
setXmlVersion
dOMDocumentSetXmlVersion Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> Text |
|
-> m () | (Can throw |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
webkitCancelFullscreen
dOMDocumentWebkitCancelFullscreen Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
webkitExitFullscreen
dOMDocumentWebkitExitFullscreen Source #
:: (HasCallStack, MonadIO m, IsDOMDocument a) | |
=> a |
|
-> m () |
Deprecated: (Since version 2.22)Use JavaScriptCore API instead
No description available in the introspection data.
Since: 2.16
Properties
activeElement
No description available in the introspection data.
getDOMDocumentActiveElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “active-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #activeElement
anchors
No description available in the introspection data.
getDOMDocumentAnchors :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “anchors
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #anchors
applets
No description available in the introspection data.
getDOMDocumentApplets :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “applets
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #applets
body
No description available in the introspection data.
getDOMDocumentBody :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLElement Source #
Get the value of the “body
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #body
characterSet
No description available in the introspection data.
getDOMDocumentCharacterSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “character-set
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #characterSet
charset
No description available in the introspection data.
constructDOMDocumentCharset :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “charset
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentCharset :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “charset
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #charset
setDOMDocumentCharset :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “charset
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #charset:=
value ]
childElementCount
No description available in the introspection data.
getDOMDocumentChildElementCount :: (MonadIO m, IsDOMDocument o) => o -> m CULong Source #
Get the value of the “child-element-count
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #childElementCount
children
No description available in the introspection data.
getDOMDocumentChildren :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “children
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #children
compatMode
No description available in the introspection data.
getDOMDocumentCompatMode :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “compat-mode
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #compatMode
contentType
No description available in the introspection data.
getDOMDocumentContentType :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “content-type
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #contentType
cookie
No description available in the introspection data.
clearDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> m () Source #
Set the value of the “cookie
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#cookie
constructDOMDocumentCookie :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “cookie
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “cookie
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #cookie
setDOMDocumentCookie :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “cookie
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #cookie:=
value ]
currentScript
No description available in the introspection data.
getDOMDocumentCurrentScript :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLScriptElement Source #
Get the value of the “current-script
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #currentScript
defaultView
No description available in the introspection data.
getDOMDocumentDefaultView :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMDOMWindow) Source #
Get the value of the “default-view
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #defaultView
designMode
No description available in the introspection data.
constructDOMDocumentDesignMode :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “design-mode
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentDesignMode :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “design-mode
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #designMode
setDOMDocumentDesignMode :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “design-mode
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #designMode:=
value ]
dir
No description available in the introspection data.
constructDOMDocumentDir :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “dir
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentDir :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “dir
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #dir
setDOMDocumentDir :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “dir
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #dir:=
value ]
doctype
No description available in the introspection data.
getDOMDocumentDoctype :: (MonadIO m, IsDOMDocument o) => o -> m DOMDocumentType Source #
Get the value of the “doctype
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #doctype
documentElement
No description available in the introspection data.
getDOMDocumentDocumentElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “document-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #documentElement
documentUri
No description available in the introspection data.
constructDOMDocumentDocumentUri :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “document-uri
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentDocumentUri :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “document-uri
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #documentUri
setDOMDocumentDocumentUri :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “document-uri
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #documentUri:=
value ]
domain
No description available in the introspection data.
getDOMDocumentDomain :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “domain
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #domain
embeds
No description available in the introspection data.
getDOMDocumentEmbeds :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “embeds
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #embeds
firstElementChild
No description available in the introspection data.
getDOMDocumentFirstElementChild :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “first-element-child
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #firstElementChild
forms
No description available in the introspection data.
getDOMDocumentForms :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “forms
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #forms
head
No description available in the introspection data.
getDOMDocumentHead :: (MonadIO m, IsDOMDocument o) => o -> m DOMHTMLHeadElement Source #
Get the value of the “head
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #head
No description available in the introspection data.
getDOMDocumentHidden :: (MonadIO m, IsDOMDocument o) => o -> m Bool Source #
Get the value of the “hidden
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #hidden
images
No description available in the introspection data.
getDOMDocumentImages :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “images
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #images
implementation
No description available in the introspection data.
getDOMDocumentImplementation :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMDOMImplementation) Source #
Get the value of the “implementation
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #implementation
inputEncoding
No description available in the introspection data.
getDOMDocumentInputEncoding :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “input-encoding
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #inputEncoding
lastElementChild
No description available in the introspection data.
getDOMDocumentLastElementChild :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “last-element-child
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #lastElementChild
lastModified
No description available in the introspection data.
getDOMDocumentLastModified :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “last-modified
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #lastModified
links
No description available in the introspection data.
getDOMDocumentLinks :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “links
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #links
origin
No description available in the introspection data.
getDOMDocumentOrigin :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “origin
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #origin
plugins
No description available in the introspection data.
getDOMDocumentPlugins :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “plugins
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #plugins
pointerLockElement
No description available in the introspection data.
getDOMDocumentPointerLockElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “pointer-lock-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #pointerLockElement
preferredStylesheetSet
No description available in the introspection data.
getDOMDocumentPreferredStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “preferred-stylesheet-set
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #preferredStylesheetSet
readyState
No description available in the introspection data.
getDOMDocumentReadyState :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “ready-state
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #readyState
referrer
No description available in the introspection data.
getDOMDocumentReferrer :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “referrer
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #referrer
scripts
No description available in the introspection data.
getDOMDocumentScripts :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMHTMLCollection) Source #
Get the value of the “scripts
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #scripts
scrollingElement
No description available in the introspection data.
getDOMDocumentScrollingElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “scrolling-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #scrollingElement
selectedStylesheetSet
No description available in the introspection data.
constructDOMDocumentSelectedStylesheetSet :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “selected-stylesheet-set
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentSelectedStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “selected-stylesheet-set
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #selectedStylesheetSet
setDOMDocumentSelectedStylesheetSet :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “selected-stylesheet-set
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #selectedStylesheetSet:=
value ]
styleSheets
No description available in the introspection data.
getDOMDocumentStyleSheets :: (MonadIO m, IsDOMDocument o) => o -> m DOMStyleSheetList Source #
Get the value of the “style-sheets
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #styleSheets
title
No description available in the introspection data.
constructDOMDocumentTitle :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “title
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentTitle :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “title
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #title
setDOMDocumentTitle :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “title
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #title:=
value ]
url
No description available in the introspection data.
getDOMDocumentUrl :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “url
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #url
visibilityState
No description available in the introspection data.
getDOMDocumentVisibilityState :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “visibility-state
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #visibilityState
webkitCurrentFullScreenElement
No description available in the introspection data.
getDOMDocumentWebkitCurrentFullScreenElement :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe DOMElement) Source #
Get the value of the “webkit-current-full-screen-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #webkitCurrentFullScreenElement
webkitFullScreenKeyboardInputAllowed
No description available in the introspection data.
getDOMDocumentWebkitFullScreenKeyboardInputAllowed :: (MonadIO m, IsDOMDocument o) => o -> m Bool Source #
Get the value of the “webkit-full-screen-keyboard-input-allowed
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #webkitFullScreenKeyboardInputAllowed
webkitFullscreenElement
No description available in the introspection data.
getDOMDocumentWebkitFullscreenElement :: (MonadIO m, IsDOMDocument o) => o -> m DOMElement Source #
Get the value of the “webkit-fullscreen-element
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #webkitFullscreenElement
webkitFullscreenEnabled
No description available in the introspection data.
getDOMDocumentWebkitFullscreenEnabled :: (MonadIO m, IsDOMDocument o) => o -> m Bool Source #
Get the value of the “webkit-fullscreen-enabled
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #webkitFullscreenEnabled
webkitIsFullScreen
No description available in the introspection data.
getDOMDocumentWebkitIsFullScreen :: (MonadIO m, IsDOMDocument o) => o -> m Bool Source #
Get the value of the “webkit-is-full-screen
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #webkitIsFullScreen
xmlEncoding
No description available in the introspection data.
getDOMDocumentXmlEncoding :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “xml-encoding
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #xmlEncoding
xmlStandalone
No description available in the introspection data.
constructDOMDocumentXmlStandalone :: (IsDOMDocument o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “xml-standalone
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentXmlStandalone :: (MonadIO m, IsDOMDocument o) => o -> m Bool Source #
Get the value of the “xml-standalone
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #xmlStandalone
setDOMDocumentXmlStandalone :: (MonadIO m, IsDOMDocument o) => o -> Bool -> m () Source #
Set the value of the “xml-standalone
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #xmlStandalone:=
value ]
xmlVersion
No description available in the introspection data.
clearDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> m () Source #
Set the value of the “xml-version
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#xmlVersion
constructDOMDocumentXmlVersion :: (IsDOMDocument o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “xml-version
” property. This is rarely needed directly, but it is used by new
.
getDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> m (Maybe Text) Source #
Get the value of the “xml-version
” property.
When overloading is enabled, this is equivalent to
get
dOMDocument #xmlVersion
setDOMDocumentXmlVersion :: (MonadIO m, IsDOMDocument o) => o -> Text -> m () Source #
Set the value of the “xml-version
” property.
When overloading is enabled, this is equivalent to
set
dOMDocument [ #xmlVersion:=
value ]