All Downloads are FREE. Search and download functionalities are using the official Maven repository.

stdlib.domCode.kt Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package kotlin.dom

import org.w3c.dom.Document
import org.w3c.dom.Node

@Deprecated("use declarations from org.w3c.dom instead: create document directly via constructor Document() or use document.implementation.createDocument")
public fun createDocument(): Document = Document()

@Deprecated("use member property outerHTML of Element class instead")
@native public val Node.outerHTML: String get() = noImpl

/** Converts the node to an XML String */
@Deprecated("use outerHTML directly")
public fun Node.toXmlString(): String = this.outerHTML

/** Converts the node to an XML String */
@Deprecated("use outerHTML directly")
public fun Node.toXmlString(xmlDeclaration: Boolean): String = this.outerHTML




© 2015 - 2024 Weber Informatics LLC | Privacy Policy