Sha256: c1e1cba0c92731eb5ce016912b25955ad20b25672567ad6bd14e4db0d0c4985b
Contents?: true
Size: 471 Bytes
Versions: 11
Compression:
Stored size: 471 Bytes
Contents
$debug("Defining HTMLQuoteElement"); /* * HTMLQuoteElement - DOM Level 2 */ var HTMLQuoteElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLQuoteElement.prototype = new HTMLElement; __extend__(HTMLQuoteElement.prototype, { get cite(){ return this.getAttribute('cite'); }, set cite(value){ this.setAttribute('cite',value); } }); // $w.HTMLQuoteElement = HTMLQuoteElement;
Version data entries
11 entries across 11 versions & 2 rubygems