DomApi

trait DomApi
Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def appendChild(node: Node, child: Node): Unit
def createComment(text: String): Comment
def createDocumentFragment: DocumentFragment
def createElement(tagName: String): HTMLElement
def createElementNS(namespaceURI: String, qualifiedName: String): Element
def createTextNode(text: String): Text
def getTextContent(node: Node): Option[String]
def insertBefore(parentNode: Node, newNode: Node, referenceNode: Option[Node]): Unit
def isComment(node: Node): Boolean
def isDocumentFragement(node: Node): Boolean
def isElement(node: Node): Boolean
def isText(node: Node): Boolean
def nextSibling(node: Node): Option[Node]
def parentNode(node: Node): Option[Node]
def removeChild(node: Node, child: Node): Unit
def setTextContent(node: Node, text: Option[String]): Unit
def tagName(elm: Element): String