gi-webkit2webextension-4.0.25: WebKit2-WebExtension bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.WebKit2WebExtension.Objects.DOMDocument

Contents

Description

No description available in the introspection data.

Synopsis

Exported types

newtype DOMDocument Source #

Memory-managed wrapper type.

Constructors

DOMDocument (ManagedPtr DOMDocument) 

Instances

Instances details
Eq DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

Methods

(==) :: DOMDocument -> DOMDocument -> Bool

(/=) :: DOMDocument -> DOMDocument -> Bool

GObject DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

ManagedPtrNewtype DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

Methods

toManagedPtr :: DOMDocument -> ManagedPtr DOMDocument

TypedObject DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

Methods

glibType :: IO GType

IsGValue DOMDocument Source #

Convert DOMDocument to and from GValue with toGValue and fromGValue.

Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

Methods

toGValue :: DOMDocument -> IO GValue

fromGValue :: GValue -> IO DOMDocument

HasParentTypes DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

type ParentTypes DOMDocument Source # 
Instance details

Defined in GI.WebKit2WebExtension.Objects.DOMDocument

type ParentTypes DOMDocument = '[DOMNode, DOMObject, Object, DOMEventTarget]

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

Instances details
(GObject o, IsDescendantOf DOMDocument o) => IsDOMDocument o Source # 
Instance details

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

Overloaded methods

adoptNode

dOMDocumentAdoptNode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) 
=> a

self: A DOMDocument

-> b

source: A DOMNode

-> m DOMNode

Returns: A DOMNode (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

caretRangeFromPoint

dOMDocumentCaretRangeFromPoint Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> CLong

x: A glong

-> CLong

y: A glong

-> m DOMRange

Returns: A DOMRange

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

createAttribute

dOMDocumentCreateAttribute Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

name: A gchar

-> m DOMAttr

Returns: A DOMAttr (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createAttributeNs

dOMDocumentCreateAttributeNs Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Maybe Text

namespaceURI: A gchar

-> Text

qualifiedName: A gchar

-> m DOMAttr

Returns: A DOMAttr (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createCdataSection

dOMDocumentCreateCdataSection Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

data: A gchar

-> m DOMCDATASection

Returns: A DOMCDATASection (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createComment

dOMDocumentCreateComment Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

data: A gchar

-> m DOMComment

Returns: A DOMComment

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createCssStyleDeclaration

dOMDocumentCreateCssStyleDeclaration Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMCSSStyleDeclaration

Returns: A DOMCSSStyleDeclaration

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createDocumentFragment

dOMDocumentCreateDocumentFragment Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMDocumentFragment

Returns: A DOMDocumentFragment

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createElement

dOMDocumentCreateElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

tagName: A gchar

-> m DOMElement

Returns: A DOMElement (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createElementNs

dOMDocumentCreateElementNs Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Maybe Text

namespaceURI: A gchar

-> Text

qualifiedName: A gchar

-> m DOMElement

Returns: A DOMElement (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createEntityReference

dOMDocumentCreateEntityReference Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Maybe Text

name: A gchar

-> m DOMEntityReference

Returns: A DOMEntityReference (Can throw GError)

Deprecated: (Since version 2.12)

This function has been removed from the DOM spec and it just returns Nothing.

createEvent

dOMDocumentCreateEvent Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

eventType: A gchar

-> m DOMEvent

Returns: A DOMEvent (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createExpression

dOMDocumentCreateExpression Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMXPathNSResolver b) 
=> a

self: A DOMDocument

-> Text

expression: A gchar

-> b

resolver: A DOMXPathNSResolver

-> m DOMXPathExpression

Returns: A DOMXPathExpression (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createNodeIterator

dOMDocumentCreateNodeIterator Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) 
=> a

self: A DOMDocument

-> b

root: A DOMNode

-> CULong

whatToShow: A gulong

-> Maybe c

filter: A DOMNodeFilter

-> Bool

expandEntityReferences: A Bool

-> m DOMNodeIterator

Returns: A DOMNodeIterator (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createNsResolver

dOMDocumentCreateNsResolver Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) 
=> a

self: A DOMDocument

-> b

nodeResolver: A DOMNode

-> m DOMXPathNSResolver

Returns: A DOMXPathNSResolver

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createProcessingInstruction

dOMDocumentCreateProcessingInstruction Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

target: A gchar

-> Text

data: A gchar

-> m DOMProcessingInstruction

Returns: A DOMProcessingInstruction (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createRange

dOMDocumentCreateRange Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMRange

Returns: A DOMRange

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createTextNode

dOMDocumentCreateTextNode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

data: A gchar

-> m DOMText

Returns: A DOMText

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

createTreeWalker

dOMDocumentCreateTreeWalker Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMNodeFilter c) 
=> a

self: A DOMDocument

-> b

root: A DOMNode

-> CULong

whatToShow: A gulong

-> Maybe c

filter: A DOMNodeFilter

-> Bool

expandEntityReferences: A Bool

-> m DOMTreeWalker

Returns: A DOMTreeWalker (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

elementFromPoint

dOMDocumentElementFromPoint Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> CLong

x: A glong

-> CLong

y: A glong

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

evaluate

dOMDocumentEvaluate Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b, IsDOMXPathNSResolver c, IsDOMXPathResult d) 
=> a

self: A DOMDocument

-> Text

expression: A gchar

-> b

contextNode: A DOMNode

-> Maybe c

resolver: A DOMXPathNSResolver

-> Word16

type: A gushort

-> Maybe d

inResult: A DOMXPathResult

-> m DOMXPathResult

Returns: A DOMXPathResult (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

execCommand

dOMDocumentExecCommand Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> Bool

userInterface: A Bool

-> Text

value: A gchar

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

exitPointerLock

dOMDocumentExitPointerLock Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getActiveElement

dOMDocumentGetActiveElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getAnchors

dOMDocumentGetAnchors Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getApplets

dOMDocumentGetApplets Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getBody

dOMDocumentGetBody Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLElement

Returns: A DOMHTMLElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getCharacterSet

dOMDocumentGetCharacterSet Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getCharset

dOMDocumentGetCharset Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getChildElementCount

dOMDocumentGetChildElementCount Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m CULong

Returns: A gulong

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getChildren

dOMDocumentGetChildren Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getCompatMode

dOMDocumentGetCompatMode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

getContentType

dOMDocumentGetContentType Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getCookie

dOMDocumentGetCookie Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getCurrentScript

dOMDocumentGetCurrentScript Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLScriptElement

Returns: A DOMHTMLScriptElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getDefaultCharset

dOMDocumentGetDefaultCharset Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.14)

No description available in the introspection data.

getDefaultView

dOMDocumentGetDefaultView Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMDOMWindow

Returns: A DOMDOMWindow

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getDesignMode

dOMDocumentGetDesignMode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

getDir

dOMDocumentGetDir Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getDoctype

dOMDocumentGetDoctype Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMDocumentType

Returns: A DOMDocumentType

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getDocumentElement

dOMDocumentGetDocumentElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getDocumentUri

dOMDocumentGetDocumentUri Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getDomain

dOMDocumentGetDomain Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getElementById

dOMDocumentGetElementById Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

elementId: A gchar

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getElementsByClassName

dOMDocumentGetElementsByClassName Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

className: a gchar with the tag name

-> m DOMNodeList

Returns: a DOMNodeList

Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByClassNameAsHtmlCollection instead.

No description available in the introspection data.

getElementsByClassNameAsHtmlCollection

dOMDocumentGetElementsByClassNameAsHtmlCollection Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

classNames: A gchar

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.12

getElementsByName

dOMDocumentGetElementsByName Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

elementName: A gchar

-> m DOMNodeList

Returns: A DOMNodeList

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getElementsByTagName

dOMDocumentGetElementsByTagName Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

tagName: a gchar with the tag name

-> m DOMNodeList

Returns: a DOMNodeList

Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByTagNameAsHtmlCollection instead.

No description available in the introspection data.

getElementsByTagNameAsHtmlCollection

dOMDocumentGetElementsByTagNameAsHtmlCollection Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

tagname: A gchar

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.12

getElementsByTagNameNs

dOMDocumentGetElementsByTagNameNs Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

namespaceUri: a gchar with the namespace URI

-> Text

tagName: a gchar with the tag name

-> m DOMNodeList

Returns: a DOMNodeList

Deprecated: (Since version 2.12)Use dOMDocumentGetElementsByTagNameNsAsHtmlCollection instead.

No description available in the introspection data.

getElementsByTagNameNsAsHtmlCollection

dOMDocumentGetElementsByTagNameNsAsHtmlCollection Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

namespaceURI: A gchar

-> Text

localName: A gchar

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.12

getEmbeds

dOMDocumentGetEmbeds Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

getFirstElementChild

dOMDocumentGetFirstElementChild Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getForms

dOMDocumentGetForms Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getHead

dOMDocumentGetHead Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLHeadElement

Returns: A DOMHTMLHeadElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getHidden

dOMDocumentGetHidden Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getImages

dOMDocumentGetImages Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getImplementation

dOMDocumentGetImplementation Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMDOMImplementation

Returns: A DOMDOMImplementation

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getInputEncoding

dOMDocumentGetInputEncoding Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getLastElementChild

dOMDocumentGetLastElementChild Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getLastModified

dOMDocumentGetLastModified Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getLinks

dOMDocumentGetLinks Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getOrigin

dOMDocumentGetOrigin Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getOverrideStyle

dOMDocumentGetOverrideStyle Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMElement b) 
=> a

self: A DOMDocument

-> b

element: A DOMElement

-> Maybe Text

pseudoElement: A gchar

-> m DOMCSSStyleDeclaration

Returns: A DOMCSSStyleDeclaration

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getPlugins

dOMDocumentGetPlugins Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

getPointerLockElement

dOMDocumentGetPointerLockElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getPreferredStylesheetSet

dOMDocumentGetPreferredStylesheetSet Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

This function has been removed and does nothing.

getReadyState

dOMDocumentGetReadyState Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getReferrer

dOMDocumentGetReferrer Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getScripts

dOMDocumentGetScripts Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMHTMLCollection

Returns: A DOMHTMLCollection

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

getScrollingElement

dOMDocumentGetScrollingElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getSelectedStylesheetSet

dOMDocumentGetSelectedStylesheetSet Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

This function has been removed and does nothing.

getStyleSheets

dOMDocumentGetStyleSheets Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMStyleSheetList

Returns: A DOMStyleSheetList

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getTitle

dOMDocumentGetTitle Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getUrl

dOMDocumentGetUrl Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getVisibilityState

dOMDocumentGetVisibilityState Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getWebkitCurrentFullscreenElement

dOMDocumentGetWebkitCurrentFullscreenElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getWebkitFullscreenElement

dOMDocumentGetWebkitFullscreenElement Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m DOMElement

Returns: A DOMElement

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getWebkitFullscreenEnabled

dOMDocumentGetWebkitFullscreenEnabled Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getWebkitFullscreenKeyboardInputAllowed

dOMDocumentGetWebkitFullscreenKeyboardInputAllowed Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getWebkitIsFullscreen

dOMDocumentGetWebkitIsFullscreen Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

getXmlEncoding

dOMDocumentGetXmlEncoding Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getXmlStandalone

dOMDocumentGetXmlStandalone Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

getXmlVersion

dOMDocumentGetXmlVersion Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

hasFocus

dOMDocumentHasFocus Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

importNode

dOMDocumentImportNode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMNode b) 
=> a

self: A DOMDocument

-> b

importedNode: A DOMNode

-> Bool

deep: A Bool

-> m DOMNode

Returns: A DOMNode (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

queryCommandEnabled

dOMDocumentQueryCommandEnabled Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

queryCommandIndeterm

dOMDocumentQueryCommandIndeterm Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

queryCommandState

dOMDocumentQueryCommandState Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

queryCommandSupported

dOMDocumentQueryCommandSupported Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> m Bool

Returns: A Bool

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

queryCommandValue

dOMDocumentQueryCommandValue Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

command: A gchar

-> m Text

Returns: A gchar

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

querySelector

dOMDocumentQuerySelector Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

selectors: A gchar

-> m DOMElement

Returns: A DOMElement (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

querySelectorAll

dOMDocumentQuerySelectorAll Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

selectors: A gchar

-> m DOMNodeList

Returns: A DOMNodeList (Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setBody

dOMDocumentSetBody Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a, IsDOMHTMLElement b) 
=> a

self: A DOMDocument

-> b

value: A DOMHTMLElement

-> m ()

(Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setCharset

dOMDocumentSetCharset Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setCookie

dOMDocumentSetCookie Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m ()

(Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setDesignMode

dOMDocumentSetDesignMode Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.14

setDir

dOMDocumentSetDir Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

setDocumentUri

dOMDocumentSetDocumentUri Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setSelectedStylesheetSet

dOMDocumentSetSelectedStylesheetSet Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

This function has been removed and does nothing.

setTitle

dOMDocumentSetTitle Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setXmlStandalone

dOMDocumentSetXmlStandalone Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Bool

value: A Bool

-> m ()

(Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

setXmlVersion

dOMDocumentSetXmlVersion Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> Text

value: A gchar

-> m ()

(Can throw GError)

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

webkitCancelFullscreen

dOMDocumentWebkitCancelFullscreen Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> m () 

Deprecated: (Since version 2.22)Use JavaScriptCore API instead

No description available in the introspection data.

Since: 2.16

webkitExitFullscreen

dOMDocumentWebkitExitFullscreen Source #

Arguments

:: (HasCallStack, MonadIO m, IsDOMDocument a) 
=> a

self: A DOMDocument

-> 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

hidden

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 ]