io.scalajs.dom.html.HTMLHeadElement.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-html_sjs0.6_2.11 Show documentation
Show all versions of dom-html_sjs0.6_2.11 Show documentation
DOM/HTML bindings for Scala.js
package io.scalajs.dom.html
import scala.scalajs.js
/**
* The HTMLHeadElement interface contains the descriptive information, or metadata, for a document.
* This object inherits all of the properties and methods described in the HTMLElement interface.
* @author [email protected]
*/
@js.native
trait HTMLHeadElement extends HTMLElement {
/**
* Is a DOMString representing the URIs of one or more metadata profiles (white space separated).
*/
def profile: String = js.native
}