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