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

io.scalajs.dom.Comment.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

/**
  * The Comment interface represents textual notations within markup; although it is generally not visually shown,
  * such comments are available to be read in the source view. Comments are represented in HTML and XML as content
  * between ''. In XML, the character sequence '--' cannot be used within a comment.
  * @see https://developer.mozilla.org/en-US/docs/Web/API/Comment
  * @author [email protected]
  */
@js.native
@JSGlobal("Comment")
class Comment extends CharacterData




© 2015 - 2024 Weber Informatics LLC | Privacy Policy