Safe Haskell | None |
---|---|
Language | Haskell2010 |
JSDOM.Generated.Document
- newDocument :: MonadDOM m => m Document
- createElement :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m (Maybe Element)
- createElement_ :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m ()
- createElementUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m Element
- createDocumentFragment :: (MonadDOM m, IsDocument self) => self -> m (Maybe DocumentFragment)
- createDocumentFragment_ :: (MonadDOM m, IsDocument self) => self -> m ()
- createDocumentFragmentUnchecked :: (MonadDOM m, IsDocument self) => self -> m DocumentFragment
- createTextNode :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe Text)
- createTextNode_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m ()
- createTextNodeUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m Text
- createComment :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe Comment)
- createComment_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m ()
- createCommentUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m Comment
- createCDATASection :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe CDATASection)
- createCDATASection_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m ()
- createCDATASectionUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m CDATASection
- createProcessingInstruction :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m (Maybe ProcessingInstruction)
- createProcessingInstruction_ :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m ()
- createProcessingInstructionUnchecked :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m ProcessingInstruction
- createAttribute :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m (Maybe Attr)
- createAttribute_ :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m ()
- createAttributeUnchecked :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m Attr
- createEntityReference :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m (Maybe EntityReference)
- createEntityReference_ :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m ()
- createEntityReferenceUnchecked :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m EntityReference
- getElementsByTagName :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m (Maybe NodeList)
- getElementsByTagName_ :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m ()
- getElementsByTagNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m NodeList
- importNode :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m (Maybe Node)
- importNode_ :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m ()
- importNodeUnchecked :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m Node
- createElementNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m (Maybe Element)
- createElementNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m ()
- createElementNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m Element
- createAttributeNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m (Maybe Attr)
- createAttributeNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m ()
- createAttributeNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m Attr
- getElementsByTagNameNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m (Maybe NodeList)
- getElementsByTagNameNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m ()
- getElementsByTagNameNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m NodeList
- getElementById :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m (Maybe Element)
- getElementById_ :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m ()
- getElementByIdUnchecked :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m Element
- adoptNode :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m (Maybe Node)
- adoptNode_ :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m ()
- adoptNodeUnchecked :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m Node
- createEvent :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m (Maybe Event)
- createEvent_ :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m ()
- createEventUnchecked :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m Event
- createRange :: (MonadDOM m, IsDocument self) => self -> m (Maybe Range)
- createRange_ :: (MonadDOM m, IsDocument self) => self -> m ()
- createRangeUnchecked :: (MonadDOM m, IsDocument self) => self -> m Range
- createNodeIterator :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m (Maybe NodeIterator)
- createNodeIterator_ :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m ()
- createNodeIteratorUnchecked :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m NodeIterator
- createTreeWalker :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m (Maybe TreeWalker)
- createTreeWalker_ :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m ()
- createTreeWalkerUnchecked :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m TreeWalker
- getOverrideStyle :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m (Maybe CSSStyleDeclaration)
- getOverrideStyle_ :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m ()
- getOverrideStyleUnchecked :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m CSSStyleDeclaration
- createExpression :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m (Maybe XPathExpression)
- createExpression_ :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m ()
- createExpressionUnchecked :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m XPathExpression
- createNSResolver :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m (Maybe XPathNSResolver)
- createNSResolver_ :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m ()
- createNSResolverUnchecked :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m XPathNSResolver
- evaluate :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m (Maybe XPathResult)
- evaluate_ :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m ()
- evaluateUnchecked :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m XPathResult
- execCommand :: (MonadDOM m, IsDocument self, ToJSString command, ToJSString value) => self -> command -> Bool -> Maybe value -> m Bool
- execCommand_ :: (MonadDOM m, IsDocument self, ToJSString command, ToJSString value) => self -> command -> Bool -> Maybe value -> m ()
- queryCommandEnabled :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool
- queryCommandEnabled_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m ()
- queryCommandIndeterm :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool
- queryCommandIndeterm_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m ()
- queryCommandState :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool
- queryCommandState_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m ()
- queryCommandSupported :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool
- queryCommandSupported_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m ()
- queryCommandValue :: (MonadDOM m, IsDocument self, ToJSString command, FromJSString result) => self -> command -> m result
- queryCommandValue_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m ()
- getElementsByName :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m (Maybe NodeList)
- getElementsByName_ :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m ()
- getElementsByNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m NodeList
- elementFromPoint :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m (Maybe Element)
- elementFromPoint_ :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m ()
- elementFromPointUnchecked :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m Element
- caretRangeFromPoint :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m (Maybe Range)
- caretRangeFromPoint_ :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m ()
- caretRangeFromPointUnchecked :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m Range
- getSelection :: (MonadDOM m, IsDocument self) => self -> m (Maybe Selection)
- getSelection_ :: (MonadDOM m, IsDocument self) => self -> m ()
- getSelectionUnchecked :: (MonadDOM m, IsDocument self) => self -> m Selection
- getCSSCanvasContext :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m (Maybe CanvasRenderingContext)
- getCSSCanvasContext_ :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m ()
- getCSSCanvasContextUnchecked :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m CanvasRenderingContext
- getElementsByClassName :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m (Maybe NodeList)
- getElementsByClassName_ :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m ()
- getElementsByClassNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m NodeList
- hasFocus :: (MonadDOM m, IsDocument self) => self -> m Bool
- hasFocus_ :: (MonadDOM m, IsDocument self) => self -> m ()
- querySelector :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m (Maybe Element)
- querySelector_ :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m ()
- querySelectorUnchecked :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m Element
- querySelectorAll :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m (Maybe NodeList)
- querySelectorAll_ :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m ()
- querySelectorAllUnchecked :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m NodeList
- webkitCancelFullScreen :: (MonadDOM m, IsDocument self) => self -> m ()
- webkitExitFullscreen :: (MonadDOM m, IsDocument self) => self -> m ()
- exitPointerLock :: (MonadDOM m, IsDocument self) => self -> m ()
- webkitGetNamedFlows :: (MonadDOM m, IsDocument self) => self -> m (Maybe DOMNamedFlowCollection)
- webkitGetNamedFlows_ :: (MonadDOM m, IsDocument self) => self -> m ()
- webkitGetNamedFlowsUnchecked :: (MonadDOM m, IsDocument self) => self -> m DOMNamedFlowCollection
- createTouch :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m (Maybe Touch)
- createTouch_ :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m ()
- createTouchUnchecked :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m Touch
- createTouchList :: (MonadDOM m, IsDocument self) => self -> m (Maybe TouchList)
- createTouchList_ :: (MonadDOM m, IsDocument self) => self -> m ()
- createTouchListUnchecked :: (MonadDOM m, IsDocument self) => self -> m TouchList
- getDoctype :: (MonadDOM m, IsDocument self) => self -> m (Maybe DocumentType)
- getDoctypeUnchecked :: (MonadDOM m, IsDocument self) => self -> m DocumentType
- getImplementation :: (MonadDOM m, IsDocument self) => self -> m (Maybe DOMImplementation)
- getImplementationUnchecked :: (MonadDOM m, IsDocument self) => self -> m DOMImplementation
- getDocumentElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element)
- getDocumentElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element
- getInputEncoding :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getInputEncodingUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getXmlEncoding :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getXmlEncodingUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setXmlVersion :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getXmlVersion :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getXmlVersionUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setXmlStandalone :: (MonadDOM m, IsDocument self) => self -> Bool -> m ()
- getXmlStandalone :: (MonadDOM m, IsDocument self) => self -> m Bool
- getDocumentURI :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getDocumentURIUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getDefaultView :: (MonadDOM m, IsDocument self) => self -> m (Maybe Window)
- getDefaultViewUnchecked :: (MonadDOM m, IsDocument self) => self -> m Window
- getStyleSheets :: (MonadDOM m, IsDocument self) => self -> m (Maybe StyleSheetList)
- getStyleSheetsUnchecked :: (MonadDOM m, IsDocument self) => self -> m StyleSheetList
- getContentType :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setTitle :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getTitle :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getTitleUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getReferrer :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setDomain :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getDomain :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getDomainUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getURL :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setCookie :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getCookie :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getCookieUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setBody :: (MonadDOM m, IsDocument self, IsHTMLElement val) => self -> Maybe val -> m ()
- getBody :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLElement)
- getBodyUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLElement
- getHead :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLHeadElement)
- getHeadUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLHeadElement
- getImages :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection)
- getImagesUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection
- getApplets :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection)
- getAppletsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection
- getLinks :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection)
- getLinksUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection
- getForms :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection)
- getFormsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection
- getAnchors :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection)
- getAnchorsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection
- getLastModified :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setLocation :: (MonadDOM m, IsDocument self) => self -> Maybe Location -> m ()
- getLocation :: (MonadDOM m, IsDocument self) => self -> m (Maybe Location)
- getLocationUnchecked :: (MonadDOM m, IsDocument self) => self -> m Location
- setCharset :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getCharset :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getCharsetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getDefaultCharset :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getDefaultCharsetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getReadyState :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getReadyStateUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getCharacterSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getCharacterSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getPreferredStylesheetSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getPreferredStylesheetSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- setSelectedStylesheetSet :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m ()
- getSelectedStylesheetSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result)
- getSelectedStylesheetSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getActiveElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element)
- getActiveElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element
- getCompatMode :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getWebkitIsFullScreen :: (MonadDOM m, IsDocument self) => self -> m Bool
- getWebkitFullScreenKeyboardInputAllowed :: (MonadDOM m, IsDocument self) => self -> m Bool
- getWebkitCurrentFullScreenElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element)
- getWebkitCurrentFullScreenElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element
- getWebkitFullscreenEnabled :: (MonadDOM m, IsDocument self) => self -> m Bool
- getWebkitFullscreenElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element)
- getWebkitFullscreenElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element
- getPointerLockElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element)
- getPointerLockElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element
- getFonts :: (MonadDOM m, IsDocument self) => self -> m (Maybe FontLoader)
- getFontsUnchecked :: (MonadDOM m, IsDocument self) => self -> m FontLoader
- abort :: (IsDocument self, IsEventTarget self) => EventName self UIEvent
- blur :: (IsDocument self, IsEventTarget self) => EventName self FocusEvent
- change :: (IsDocument self, IsEventTarget self) => EventName self Event
- click :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- contextMenu :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dblClick :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- drag :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dragEnd :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dragEnter :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dragLeave :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dragOver :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- dragStart :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- drop :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- error :: (IsDocument self, IsEventTarget self) => EventName self UIEvent
- focus :: (IsDocument self, IsEventTarget self) => EventName self FocusEvent
- input :: (IsDocument self, IsEventTarget self) => EventName self Event
- invalid :: (IsDocument self, IsEventTarget self) => EventName self Event
- keyDown :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent
- keyPress :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent
- keyUp :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent
- load :: (IsDocument self, IsEventTarget self) => EventName self UIEvent
- mouseDown :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseEnter :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseLeave :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseMove :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseOut :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseOver :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseUp :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- mouseWheel :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent
- readyStateChange :: (IsDocument self, IsEventTarget self) => EventName self Event
- scroll :: (IsDocument self, IsEventTarget self) => EventName self UIEvent
- select :: (IsDocument self, IsEventTarget self) => EventName self UIEvent
- submit :: (IsDocument self, IsEventTarget self) => EventName self Event
- wheel :: (IsDocument self, IsEventTarget self) => EventName self WheelEvent
- beforeCut :: (IsDocument self, IsEventTarget self) => EventName self Event
- cut :: (IsDocument self, IsEventTarget self) => EventName self Event
- beforeCopy :: (IsDocument self, IsEventTarget self) => EventName self Event
- copy :: (IsDocument self, IsEventTarget self) => EventName self Event
- beforePaste :: (IsDocument self, IsEventTarget self) => EventName self Event
- paste :: (IsDocument self, IsEventTarget self) => EventName self Event
- reset :: (IsDocument self, IsEventTarget self) => EventName self Event
- search :: (IsDocument self, IsEventTarget self) => EventName self Event
- selectStart :: (IsDocument self, IsEventTarget self) => EventName self Event
- selectionchange :: (IsDocument self, IsEventTarget self) => EventName self onselectionchange
- touchStart :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent
- touchMove :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent
- touchEnd :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent
- touchCancel :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent
- webKitFullscreenChange :: (IsDocument self, IsEventTarget self) => EventName self Event
- webKitFullscreenError :: (IsDocument self, IsEventTarget self) => EventName self Event
- pointerlockchange :: (IsDocument self, IsEventTarget self) => EventName self Event
- pointerlockerror :: (IsDocument self, IsEventTarget self) => EventName self Event
- securitypolicyviolation :: (IsDocument self, IsEventTarget self) => EventName self onsecuritypolicyviolation
- webKitWillRevealBottom :: (IsDocument self, IsEventTarget self) => EventName self Event
- webKitWillRevealLeft :: (IsDocument self, IsEventTarget self) => EventName self Event
- webKitWillRevealRight :: (IsDocument self, IsEventTarget self) => EventName self Event
- webKitWillRevealTop :: (IsDocument self, IsEventTarget self) => EventName self Event
- getVisibilityState :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- getHidden :: (MonadDOM m, IsDocument self) => self -> m Bool
- getSecurityPolicy :: (MonadDOM m, IsDocument self) => self -> m (Maybe SecurityPolicy)
- getSecurityPolicyUnchecked :: (MonadDOM m, IsDocument self) => self -> m SecurityPolicy
- getCurrentScript :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLScriptElement)
- getCurrentScriptUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLScriptElement
- getOrigin :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result
- data Document
- castToDocument :: IsGObject obj => obj -> JSM Document
- gTypeDocument :: JSM GType
- class IsNode o => IsDocument o
- toDocument :: IsDocument o => o -> Document
Documentation
createElement :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m (Maybe Element) Source #
createElement_ :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m () Source #
createElementUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagName) => self -> Maybe tagName -> m Element Source #
createDocumentFragment :: (MonadDOM m, IsDocument self) => self -> m (Maybe DocumentFragment) Source #
createDocumentFragment_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
createDocumentFragmentUnchecked :: (MonadDOM m, IsDocument self) => self -> m DocumentFragment Source #
createTextNode :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe Text) Source #
createTextNode_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m () Source #
createTextNodeUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m Text Source #
createComment :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe Comment) Source #
createComment_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m () Source #
createCommentUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m Comment Source #
createCDATASection :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m (Maybe CDATASection) Source #
createCDATASection_ :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m () Source #
createCDATASectionUnchecked :: (MonadDOM m, IsDocument self, ToJSString data') => self -> data' -> m CDATASection Source #
createProcessingInstruction :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m (Maybe ProcessingInstruction) Source #
createProcessingInstruction_ :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m () Source #
createProcessingInstructionUnchecked :: (MonadDOM m, IsDocument self, ToJSString target, ToJSString data') => self -> target -> data' -> m ProcessingInstruction Source #
createAttribute :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m (Maybe Attr) Source #
createAttribute_ :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m () Source #
createAttributeUnchecked :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m Attr Source #
createEntityReference :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m (Maybe EntityReference) Source #
createEntityReference_ :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m () Source #
createEntityReferenceUnchecked :: (MonadDOM m, IsDocument self, ToJSString name) => self -> name -> m EntityReference Source #
getElementsByTagName :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m (Maybe NodeList) Source #
getElementsByTagName_ :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m () Source #
getElementsByTagNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m NodeList Source #
importNode :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m (Maybe Node) Source #
importNode_ :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m () Source #
importNodeUnchecked :: (MonadDOM m, IsDocument self, IsNode importedNode) => self -> Maybe importedNode -> Bool -> m Node Source #
createElementNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m (Maybe Element) Source #
createElementNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m () Source #
createElementNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m Element Source #
createAttributeNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m (Maybe Attr) Source #
createAttributeNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m () Source #
createAttributeNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString qualifiedName) => self -> Maybe namespaceURI -> Maybe qualifiedName -> m Attr Source #
getElementsByTagNameNS :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m (Maybe NodeList) Source #
getElementsByTagNameNS_ :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m () Source #
getElementsByTagNameNSUnchecked :: (MonadDOM m, IsDocument self, ToJSString namespaceURI, ToJSString localName) => self -> Maybe namespaceURI -> localName -> m NodeList Source #
getElementById :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m (Maybe Element) Source #
getElementById_ :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m () Source #
getElementByIdUnchecked :: (MonadDOM m, IsDocument self, ToJSString elementId) => self -> elementId -> m Element Source #
adoptNode :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m (Maybe Node) Source #
adoptNode_ :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m () Source #
adoptNodeUnchecked :: (MonadDOM m, IsDocument self, IsNode source) => self -> Maybe source -> m Node Source #
createEvent :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m (Maybe Event) Source #
createEvent_ :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m () Source #
createEventUnchecked :: (MonadDOM m, IsDocument self, ToJSString eventType) => self -> eventType -> m Event Source #
createRange :: (MonadDOM m, IsDocument self) => self -> m (Maybe Range) Source #
createRange_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
createRangeUnchecked :: (MonadDOM m, IsDocument self) => self -> m Range Source #
createNodeIterator :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m (Maybe NodeIterator) Source #
createNodeIterator_ :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m () Source #
createNodeIteratorUnchecked :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m NodeIterator Source #
createTreeWalker :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m (Maybe TreeWalker) Source #
createTreeWalker_ :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m () Source #
createTreeWalkerUnchecked :: (MonadDOM m, IsDocument self, IsNode root) => self -> Maybe root -> Word -> Maybe NodeFilter -> Bool -> m TreeWalker Source #
getOverrideStyle :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m (Maybe CSSStyleDeclaration) Source #
getOverrideStyle_ :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m () Source #
getOverrideStyleUnchecked :: (MonadDOM m, IsDocument self, IsElement element, ToJSString pseudoElement) => self -> Maybe element -> pseudoElement -> m CSSStyleDeclaration Source #
createExpression :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m (Maybe XPathExpression) Source #
createExpression_ :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m () Source #
createExpressionUnchecked :: (MonadDOM m, IsDocument self, ToJSString expression) => self -> expression -> Maybe XPathNSResolver -> m XPathExpression Source #
createNSResolver :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m (Maybe XPathNSResolver) Source #
createNSResolver_ :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m () Source #
createNSResolverUnchecked :: (MonadDOM m, IsDocument self, IsNode nodeResolver) => self -> Maybe nodeResolver -> m XPathNSResolver Source #
evaluate :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m (Maybe XPathResult) Source #
evaluate_ :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m () Source #
evaluateUnchecked :: (MonadDOM m, IsDocument self, ToJSString expression, IsNode contextNode) => self -> expression -> Maybe contextNode -> Maybe XPathNSResolver -> Word -> Maybe XPathResult -> m XPathResult Source #
execCommand :: (MonadDOM m, IsDocument self, ToJSString command, ToJSString value) => self -> command -> Bool -> Maybe value -> m Bool Source #
execCommand_ :: (MonadDOM m, IsDocument self, ToJSString command, ToJSString value) => self -> command -> Bool -> Maybe value -> m () Source #
queryCommandEnabled :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool Source #
queryCommandEnabled_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m () Source #
queryCommandIndeterm :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool Source #
queryCommandIndeterm_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m () Source #
queryCommandState :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool Source #
queryCommandState_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m () Source #
queryCommandSupported :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m Bool Source #
queryCommandSupported_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m () Source #
queryCommandValue :: (MonadDOM m, IsDocument self, ToJSString command, FromJSString result) => self -> command -> m result Source #
queryCommandValue_ :: (MonadDOM m, IsDocument self, ToJSString command) => self -> command -> m () Source #
getElementsByName :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m (Maybe NodeList) Source #
getElementsByName_ :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m () Source #
getElementsByNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString elementName) => self -> elementName -> m NodeList Source #
elementFromPoint :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m (Maybe Element) Source #
elementFromPoint_ :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m () Source #
elementFromPointUnchecked :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m Element Source #
caretRangeFromPoint :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m (Maybe Range) Source #
caretRangeFromPoint_ :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m () Source #
caretRangeFromPointUnchecked :: (MonadDOM m, IsDocument self) => self -> Int -> Int -> m Range Source #
getSelection :: (MonadDOM m, IsDocument self) => self -> m (Maybe Selection) Source #
getSelection_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
getSelectionUnchecked :: (MonadDOM m, IsDocument self) => self -> m Selection Source #
getCSSCanvasContext :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m (Maybe CanvasRenderingContext) Source #
getCSSCanvasContext_ :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m () Source #
getCSSCanvasContextUnchecked :: (MonadDOM m, IsDocument self, ToJSString contextId, ToJSString name) => self -> contextId -> name -> Int -> Int -> m CanvasRenderingContext Source #
getElementsByClassName :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m (Maybe NodeList) Source #
getElementsByClassName_ :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m () Source #
getElementsByClassNameUnchecked :: (MonadDOM m, IsDocument self, ToJSString tagname) => self -> tagname -> m NodeList Source #
hasFocus_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
querySelector :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m (Maybe Element) Source #
querySelector_ :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m () Source #
querySelectorUnchecked :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m Element Source #
querySelectorAll :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m (Maybe NodeList) Source #
querySelectorAll_ :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m () Source #
querySelectorAllUnchecked :: (MonadDOM m, IsDocument self, ToJSString selectors) => self -> selectors -> m NodeList Source #
webkitCancelFullScreen :: (MonadDOM m, IsDocument self) => self -> m () Source #
webkitExitFullscreen :: (MonadDOM m, IsDocument self) => self -> m () Source #
exitPointerLock :: (MonadDOM m, IsDocument self) => self -> m () Source #
webkitGetNamedFlows :: (MonadDOM m, IsDocument self) => self -> m (Maybe DOMNamedFlowCollection) Source #
webkitGetNamedFlows_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
webkitGetNamedFlowsUnchecked :: (MonadDOM m, IsDocument self) => self -> m DOMNamedFlowCollection Source #
createTouch :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m (Maybe Touch) Source #
createTouch_ :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m () Source #
createTouchUnchecked :: (MonadDOM m, IsDocument self, IsEventTarget target) => self -> Maybe Window -> Maybe target -> Int -> Int -> Int -> Int -> Int -> Int -> Int -> Float -> Float -> m Touch Source #
createTouchList :: (MonadDOM m, IsDocument self) => self -> m (Maybe TouchList) Source #
createTouchList_ :: (MonadDOM m, IsDocument self) => self -> m () Source #
createTouchListUnchecked :: (MonadDOM m, IsDocument self) => self -> m TouchList Source #
getDoctype :: (MonadDOM m, IsDocument self) => self -> m (Maybe DocumentType) Source #
getDoctypeUnchecked :: (MonadDOM m, IsDocument self) => self -> m DocumentType Source #
getImplementation :: (MonadDOM m, IsDocument self) => self -> m (Maybe DOMImplementation) Source #
getImplementationUnchecked :: (MonadDOM m, IsDocument self) => self -> m DOMImplementation Source #
getDocumentElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element) Source #
getDocumentElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element Source #
getInputEncoding :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getInputEncodingUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getXmlEncoding :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getXmlEncodingUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setXmlVersion :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getXmlVersion :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getXmlVersionUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setXmlStandalone :: (MonadDOM m, IsDocument self) => self -> Bool -> m () Source #
getXmlStandalone :: (MonadDOM m, IsDocument self) => self -> m Bool Source #
getDocumentURI :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getDocumentURIUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getDefaultView :: (MonadDOM m, IsDocument self) => self -> m (Maybe Window) Source #
getDefaultViewUnchecked :: (MonadDOM m, IsDocument self) => self -> m Window Source #
getStyleSheets :: (MonadDOM m, IsDocument self) => self -> m (Maybe StyleSheetList) Source #
getStyleSheetsUnchecked :: (MonadDOM m, IsDocument self) => self -> m StyleSheetList Source #
getContentType :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setTitle :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getTitle :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getTitleUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getReferrer :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setDomain :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getDomain :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getDomainUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getURL :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setCookie :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getCookie :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getCookieUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setBody :: (MonadDOM m, IsDocument self, IsHTMLElement val) => self -> Maybe val -> m () Source #
getBody :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLElement) Source #
getBodyUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLElement Source #
getHead :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLHeadElement) Source #
getHeadUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLHeadElement Source #
getImages :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection) Source #
getImagesUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection Source #
getApplets :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection) Source #
getAppletsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection Source #
getLinks :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection) Source #
getLinksUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection Source #
getForms :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection) Source #
getFormsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection Source #
getAnchors :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLCollection) Source #
getAnchorsUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLCollection Source #
getLastModified :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setLocation :: (MonadDOM m, IsDocument self) => self -> Maybe Location -> m () Source #
getLocation :: (MonadDOM m, IsDocument self) => self -> m (Maybe Location) Source #
getLocationUnchecked :: (MonadDOM m, IsDocument self) => self -> m Location Source #
setCharset :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getCharset :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getCharsetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getDefaultCharset :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getDefaultCharsetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getReadyState :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getReadyStateUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getCharacterSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getCharacterSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getPreferredStylesheetSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getPreferredStylesheetSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
setSelectedStylesheetSet :: (MonadDOM m, IsDocument self, ToJSString val) => self -> Maybe val -> m () Source #
getSelectedStylesheetSet :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m (Maybe result) Source #
getSelectedStylesheetSetUnchecked :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getActiveElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element) Source #
getActiveElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element Source #
getCompatMode :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getWebkitIsFullScreen :: (MonadDOM m, IsDocument self) => self -> m Bool Source #
getWebkitFullScreenKeyboardInputAllowed :: (MonadDOM m, IsDocument self) => self -> m Bool Source #
getWebkitCurrentFullScreenElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element) Source #
getWebkitCurrentFullScreenElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element Source #
getWebkitFullscreenEnabled :: (MonadDOM m, IsDocument self) => self -> m Bool Source #
getWebkitFullscreenElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element) Source #
getWebkitFullscreenElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element Source #
getPointerLockElement :: (MonadDOM m, IsDocument self) => self -> m (Maybe Element) Source #
getPointerLockElementUnchecked :: (MonadDOM m, IsDocument self) => self -> m Element Source #
getFonts :: (MonadDOM m, IsDocument self) => self -> m (Maybe FontLoader) Source #
getFontsUnchecked :: (MonadDOM m, IsDocument self) => self -> m FontLoader Source #
abort :: (IsDocument self, IsEventTarget self) => EventName self UIEvent Source #
blur :: (IsDocument self, IsEventTarget self) => EventName self FocusEvent Source #
change :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
click :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
contextMenu :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dblClick :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
drag :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dragEnd :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dragEnter :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dragLeave :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dragOver :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
dragStart :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
drop :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
error :: (IsDocument self, IsEventTarget self) => EventName self UIEvent Source #
focus :: (IsDocument self, IsEventTarget self) => EventName self FocusEvent Source #
input :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
invalid :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
keyDown :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent Source #
keyPress :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent Source #
keyUp :: (IsDocument self, IsEventTarget self) => EventName self KeyboardEvent Source #
load :: (IsDocument self, IsEventTarget self) => EventName self UIEvent Source #
mouseDown :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseEnter :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseLeave :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseMove :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseOut :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseOver :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseUp :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
mouseWheel :: (IsDocument self, IsEventTarget self) => EventName self MouseEvent Source #
readyStateChange :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
scroll :: (IsDocument self, IsEventTarget self) => EventName self UIEvent Source #
select :: (IsDocument self, IsEventTarget self) => EventName self UIEvent Source #
submit :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
wheel :: (IsDocument self, IsEventTarget self) => EventName self WheelEvent Source #
beforeCut :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
cut :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
beforeCopy :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
copy :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
beforePaste :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
paste :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
reset :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
search :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
selectStart :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
selectionchange :: (IsDocument self, IsEventTarget self) => EventName self onselectionchange Source #
touchStart :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent Source #
touchMove :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent Source #
touchEnd :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent Source #
touchCancel :: (IsDocument self, IsEventTarget self) => EventName self TouchEvent Source #
webKitFullscreenChange :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
webKitFullscreenError :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
pointerlockchange :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
pointerlockerror :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
securitypolicyviolation :: (IsDocument self, IsEventTarget self) => EventName self onsecuritypolicyviolation Source #
webKitWillRevealBottom :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
webKitWillRevealLeft :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
webKitWillRevealRight :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
webKitWillRevealTop :: (IsDocument self, IsEventTarget self) => EventName self Event Source #
getVisibilityState :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
getSecurityPolicy :: (MonadDOM m, IsDocument self) => self -> m (Maybe SecurityPolicy) Source #
getSecurityPolicyUnchecked :: (MonadDOM m, IsDocument self) => self -> m SecurityPolicy Source #
getCurrentScript :: (MonadDOM m, IsDocument self) => self -> m (Maybe HTMLScriptElement) Source #
getCurrentScriptUnchecked :: (MonadDOM m, IsDocument self) => self -> m HTMLScriptElement Source #
getOrigin :: (MonadDOM m, IsDocument self, FromJSString result) => self -> m result Source #
Functions for this inteface are in JSDOM.Document. Base interface functions are in:
gTypeDocument :: JSM GType Source #
class IsNode o => IsDocument o Source #
Instances
toDocument :: IsDocument o => o -> Document Source #