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