ghcjs-dom-0.1.1.3: DOM library that supports both GHCJS and WebKitGTK

Safe HaskellNone
LanguageHaskell2010

GHCJS.DOM.DOMImplementation

Documentation

domImplementationHasFeature :: (IsDOMImplementation self, ToJSString feature, ToJSString version) => self -> feature -> version -> IO Bool Source

domImplementationCreateDocumentType :: (IsDOMImplementation self, ToJSString qualifiedName, ToJSString publicId, ToJSString systemId) => self -> qualifiedName -> publicId -> systemId -> IO (Maybe DocumentType) Source

domImplementationCreateDocument :: (IsDOMImplementation self, ToJSString namespaceURI, ToJSString qualifiedName, IsDocumentType doctype) => self -> namespaceURI -> qualifiedName -> Maybe doctype -> IO (Maybe Document) Source