kt1770.kt test rewrote during migration to 171 platform
This commit is contained in:
committed by
Dmitry Jemerov
parent
10aedaf0f4
commit
211b58ac6e
@@ -2,21 +2,16 @@
|
|||||||
// IGNORE_BACKEND: JS, NATIVE
|
// IGNORE_BACKEND: JS, NATIVE
|
||||||
|
|
||||||
// FULL_JDK
|
// FULL_JDK
|
||||||
|
// WITH_RUNTIME
|
||||||
|
|
||||||
|
//This front-end problem test added to box ones only cause of FULL_JDK support
|
||||||
import org.w3c.dom.Element
|
import org.w3c.dom.Element
|
||||||
import org.xml.sax.InputSource
|
|
||||||
import javax.xml.parsers.DocumentBuilderFactory
|
|
||||||
import java.io.StringReader
|
|
||||||
|
|
||||||
class MyElement(e: Element): Element by e {
|
class MyElement(e: Element): Element by e {
|
||||||
fun bar() = "OK"
|
fun bar() = "OK"
|
||||||
}
|
}
|
||||||
|
|
||||||
fun box() : String {
|
fun box() : String {
|
||||||
val factory = DocumentBuilderFactory.newInstance()!!;
|
val touch = MyElement::class.java
|
||||||
val builder = factory.newDocumentBuilder()!!;
|
return "OK"
|
||||||
val source = InputSource(StringReader("<OK></OK>"));
|
|
||||||
val doc = builder.parse(source)!!;
|
|
||||||
val myElement = MyElement(doc.getDocumentElement()!!)
|
|
||||||
return myElement.getTagName()!!
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user