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

io.scalajs.dom.ProcessingInstruction.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package io.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation.JSGlobal

/**
  * Processing Instruction
  * @author [email protected]
  */
@js.native
@JSGlobal("ProcessingInstruction")
class ProcessingInstruction extends js.Object {

  /**
    * The character data of a [[Text]], [[Comment]] or [[CDATASection]] node,
    * or the data in a ProcessingInstruction node.
    */
  var data: String = js.native

  /**
    * The target of a ProcessingInstruction node, ie. the token immediately
    * after the opening delimiter.
    */
  def target: Node = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy