Sha256: c412459c23cd8184b3cb6923d74243879a6bc16ffbd26c45ec62a3adb95d924f
Contents?: true
Size: 504 Bytes
Versions: 11
Compression:
Stored size: 504 Bytes
Contents
$debug("Defining HTMLTitleElement"); /* * HTMLTitleElement - DOM Level 2 */ var HTMLTitleElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLTitleElement.prototype = new HTMLElement; __extend__(HTMLTitleElement.prototype, { get text() { return this.innerText; }, set text(titleStr) { this.innerHTML = titleStr; // if paranoid, would error on embedded HTML } }); // $w.HTMLTitleElement = HTMLTitleElement;
Version data entries
11 entries across 11 versions & 2 rubygems