 function HTMLAnchorElementWrapper(node) { this.init(node, 'HTMLAnchorElementWrapper', node.tagName); }; HTMLAnchorElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['a'] = HTMLAnchorElementWrapper; HTMLAnchorElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLAnchorElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLAnchorElementWrapper.prototype.getCharset = function() { return this.outerNode.charset; }; HTMLAnchorElementWrapper.prototype.setCharset = function(value) { this.outerNode.charset = value; }; HTMLAnchorElementWrapper.prototype.getCoords = function() { return this.outerNode.coords; }; HTMLAnchorElementWrapper.prototype.setCoords = function(value) { this.outerNode.coords = value; }; HTMLAnchorElementWrapper.prototype.getHref = function() { return this.outerNode.href; }; HTMLAnchorElementWrapper.prototype.setHref = function(value) { this.outerNode.href = value; }; HTMLAnchorElementWrapper.prototype.getHrefLang = function() { return this.outerNode.hrefLang; }; HTMLAnchorElementWrapper.prototype.setHrefLang = function(value) { this.outerNode.hrefLang = value; }; HTMLAnchorElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLAnchorElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLAnchorElementWrapper.prototype.getRel = function() { return this.outerNode.rel; }; HTMLAnchorElementWrapper.prototype.setRel = function(value) { this.outerNode.rel = value; }; HTMLAnchorElementWrapper.prototype.getRev = function() { return this.outerNode.rev; }; HTMLAnchorElementWrapper.prototype.setRev = function(value) { this.outerNode.rev = value; }; HTMLAnchorElementWrapper.prototype.getShape = function() { return this.outerNode.shape; }; HTMLAnchorElementWrapper.prototype.setShape = function(value) { this.outerNode.shape = value; }; HTMLAnchorElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLAnchorElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLAnchorElementWrapper.prototype.getTarget = function() { return this.outerNode.target; }; HTMLAnchorElementWrapper.prototype.setTarget = function(value) { this.outerNode.target = value; }; HTMLAnchorElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLAnchorElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLAnchorElementWrapper.prototype.blur = function() { return this.outerNode.blur(); }; HTMLAnchorElementWrapper.prototype.focus = function() { return this.outerNode.focus(); }; function HTMLAppletElementWrapper(node) { this.init(node, 'HTMLAppletElementWrapper', node.tagName); }; HTMLAppletElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['applet'] = HTMLAppletElementWrapper; HTMLAppletElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLAppletElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLAppletElementWrapper.prototype.getAlt = function() { return this.outerNode.alt; }; HTMLAppletElementWrapper.prototype.setAlt = function(value) { this.outerNode.alt = value; }; HTMLAppletElementWrapper.prototype.getArchive = function() { return this.outerNode.archive; }; HTMLAppletElementWrapper.prototype.setArchive = function(value) { this.outerNode.archive = value; }; HTMLAppletElementWrapper.prototype.getCode = function() { return this.outerNode.code; }; HTMLAppletElementWrapper.prototype.setCode = function(value) { this.outerNode.code = value; }; HTMLAppletElementWrapper.prototype.getCodeBase = function() { return this.outerNode.codeBase; }; HTMLAppletElementWrapper.prototype.setCodeBase = function(value) { this.outerNode.codeBase = value; }; HTMLAppletElementWrapper.prototype.getHeight = function() { return this.outerNode.height; }; HTMLAppletElementWrapper.prototype.setHeight = function(value) { this.outerNode.height = value; }; HTMLAppletElementWrapper.prototype.getHspace = function() { return this.outerNode.hspace; }; HTMLAppletElementWrapper.prototype.setHspace = function(value) { this.outerNode.hspace = value; }; HTMLAppletElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLAppletElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLAppletElementWrapper.prototype.getObject = function() { return this.outerNode.object; }; HTMLAppletElementWrapper.prototype.setObject = function(value) { this.outerNode.object = value; }; HTMLAppletElementWrapper.prototype.getVspace = function() { return this.outerNode.vspace; }; HTMLAppletElementWrapper.prototype.setVspace = function(value) { this.outerNode.vspace = value; }; HTMLAppletElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLAppletElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLAreaElementWrapper(node) { this.init(node, 'HTMLAreaElementWrapper', node.tagName); }; HTMLAreaElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['area'] = HTMLAreaElementWrapper; HTMLAreaElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLAreaElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLAreaElementWrapper.prototype.getAlt = function() { return this.outerNode.alt; }; HTMLAreaElementWrapper.prototype.setAlt = function(value) { this.outerNode.alt = value; }; HTMLAreaElementWrapper.prototype.getCoords = function() { return this.outerNode.coords; }; HTMLAreaElementWrapper.prototype.setCoords = function(value) { this.outerNode.coords = value; }; HTMLAreaElementWrapper.prototype.getHref = function() { return this.outerNode.href; }; HTMLAreaElementWrapper.prototype.setHref = function(value) { this.outerNode.href = value; }; HTMLAreaElementWrapper.prototype.getNoHref = function() { return this.outerNode.noHref; }; HTMLAreaElementWrapper.prototype.setNoHref = function(value) { this.outerNode.noHref = value; }; HTMLAreaElementWrapper.prototype.getShape = function() { return this.outerNode.shape; }; HTMLAreaElementWrapper.prototype.setShape = function(value) { this.outerNode.shape = value; }; HTMLAreaElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLAreaElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLAreaElementWrapper.prototype.getTarget = function() { return this.outerNode.target; }; HTMLAreaElementWrapper.prototype.setTarget = function(value) { this.outerNode.target = value; }; function HTMLBaseElementWrapper(node) { this.init(node, 'HTMLBaseElementWrapper', node.tagName); }; HTMLBaseElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['base'] = HTMLBaseElementWrapper; HTMLBaseElementWrapper.prototype.getHref = function() { return this.outerNode.href; }; HTMLBaseElementWrapper.prototype.setHref = function(value) { this.outerNode.href = value; }; HTMLBaseElementWrapper.prototype.getTarget = function() { return this.outerNode.target; }; HTMLBaseElementWrapper.prototype.setTarget = function(value) { this.outerNode.target = value; }; function HTMLBaseFontElementWrapper(node) { this.init(node, 'HTMLBaseFontElementWrapper', node.tagName); }; HTMLBaseFontElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['basefont'] = HTMLBaseFontElementWrapper; HTMLBaseFontElementWrapper.prototype.getColor = function() { return this.outerNode.color; }; HTMLBaseFontElementWrapper.prototype.setColor = function(value) { this.outerNode.color = value; }; HTMLBaseFontElementWrapper.prototype.getFace = function() { return this.outerNode.face; }; HTMLBaseFontElementWrapper.prototype.setFace = function(value) { this.outerNode.face = value; }; HTMLBaseFontElementWrapper.prototype.getSize = function() { return this.outerNode.size; }; HTMLBaseFontElementWrapper.prototype.setSize = function(value) { this.outerNode.size = value; }; function HTMLBodyElementWrapper(node) { this.init(node, 'HTMLBodyElementWrapper', node.tagName); }; HTMLBodyElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['body'] = HTMLBodyElementWrapper; HTMLBodyElementWrapper.prototype.getALink = function() { return this.outerNode.aLink; }; HTMLBodyElementWrapper.prototype.setALink = function(value) { this.outerNode.aLink = value; }; HTMLBodyElementWrapper.prototype.getBackground = function() { return this.outerNode.background; }; HTMLBodyElementWrapper.prototype.setBackground = function(value) { this.outerNode.background = value; }; HTMLBodyElementWrapper.prototype.getBgColor = function() { return this.outerNode.bgColor; }; HTMLBodyElementWrapper.prototype.setBgColor = function(value) { this.outerNode.bgColor = value; }; HTMLBodyElementWrapper.prototype.getLink = function() { return this.outerNode.link; }; HTMLBodyElementWrapper.prototype.setLink = function(value) { this.outerNode.link = value; }; HTMLBodyElementWrapper.prototype.getText = function() { return this.outerNode.text; }; HTMLBodyElementWrapper.prototype.setText = function(value) { this.outerNode.text = value; }; HTMLBodyElementWrapper.prototype.getVLink = function() { return this.outerNode.vLink; }; HTMLBodyElementWrapper.prototype.setVLink = function(value) { this.outerNode.vLink = value; }; function HTMLBrElementWrapper(node) { this.init(node, 'HTMLBrElementWrapper', node.tagName); }; HTMLBrElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['br'] = HTMLBrElementWrapper; HTMLBrElementWrapper.prototype.getClear = function() { return this.outerNode.clear; }; HTMLBrElementWrapper.prototype.setClear = function(value) { this.outerNode.clear = value; }; function HTMLButtonElementWrapper(node) { this.init(node, 'HTMLButtonElementWrapper', node.tagName); }; HTMLButtonElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['button'] = HTMLButtonElementWrapper; HTMLButtonElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLButtonElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLButtonElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLButtonElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLButtonElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLButtonElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLButtonElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLButtonElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLButtonElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLButtonElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLButtonElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLButtonElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; function HTMLDirectoryElementWrapper(node) { this.init(node, 'HTMLDirectoryElementWrapper', node.tagName); }; HTMLDirectoryElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['directory'] = HTMLDirectoryElementWrapper; HTMLDirectoryElementWrapper.prototype.getCompact = function() { return this.outerNode.compact; }; HTMLDirectoryElementWrapper.prototype.setCompact = function(value) { this.outerNode.compact = value; }; function HTMLDivElementWrapper(node) { this.init(node, 'HTMLDivElementWrapper', node.tagName); }; HTMLDivElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['div'] = HTMLDivElementWrapper; HTMLDivElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLDivElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; function HTMLDListElementWrapper(node) { this.init(node, 'HTMLDListElementWrapper', node.tagName); }; HTMLDListElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['dlist'] = HTMLDListElementWrapper; HTMLDListElementWrapper.prototype.getCompact = function() { return this.outerNode.compact; }; HTMLDListElementWrapper.prototype.setCompact = function(value) { this.outerNode.compact = value; }; function HTMLFieldSetElementWrapper(node) { this.init(node, 'HTMLFieldSetElementWrapper', node.tagName); }; HTMLFieldSetElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['fieldset'] = HTMLFieldSetElementWrapper; HTMLFieldSetElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; function HTMLFontElementWrapper(node) { this.init(node, 'HTMLFontElementWrapper', node.tagName); }; HTMLFontElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['font'] = HTMLFontElementWrapper; HTMLFontElementWrapper.prototype.getColor = function() { return this.outerNode.color; }; HTMLFontElementWrapper.prototype.setColor = function(value) { this.outerNode.color = value; }; HTMLFontElementWrapper.prototype.getFace = function() { return this.outerNode.face; }; HTMLFontElementWrapper.prototype.setFace = function(value) { this.outerNode.face = value; }; HTMLFontElementWrapper.prototype.getSize = function() { return this.outerNode.size; }; HTMLFontElementWrapper.prototype.setSize = function(value) { this.outerNode.size = value; }; function HTMLFormElementWrapper(node) { this.init(node, 'HTMLFormElementWrapper', node.tagName); }; HTMLFormElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['form'] = HTMLFormElementWrapper; HTMLFormElementWrapper.prototype.getAcceptCharset = function() { return this.outerNode.acceptCharset; }; HTMLFormElementWrapper.prototype.setAcceptCharset = function(value) { this.outerNode.acceptCharset = value; }; HTMLFormElementWrapper.prototype.getAction = function() { return this.outerNode.action; }; HTMLFormElementWrapper.prototype.setAction = function(value) { this.outerNode.action = value; }; HTMLFormElementWrapper.prototype.getElements = function() { return new HTMLCollectionWrapper(this.outerNode.elements); }; HTMLFormElementWrapper.prototype.getEnctype = function() { return this.outerNode.enctype; }; HTMLFormElementWrapper.prototype.setEnctype = function(value) { this.outerNode.enctype = value; }; HTMLFormElementWrapper.prototype.getLength = function() { return this.outerNode.length; }; HTMLFormElementWrapper.prototype.getMethod = function() { return this.outerNode.method; }; HTMLFormElementWrapper.prototype.setMethod = function(value) { this.outerNode.method = value; }; HTMLFormElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLFormElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLFormElementWrapper.prototype.getTarget = function() { return this.outerNode.target; }; HTMLFormElementWrapper.prototype.setTarget = function(value) { this.outerNode.target = value; }; HTMLFormElementWrapper.prototype.reset = function() { return this.outerNode.reset(); }; HTMLFormElementWrapper.prototype.submit = function() { return this.outerNode.submit(); }; function HTMLFrameElementWrapper(node) { this.init(node, 'HTMLFrameElementWrapper', node.tagName); }; HTMLFrameElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['frame'] = HTMLFrameElementWrapper; HTMLFrameElementWrapper.prototype.getContentDocument = function() { return this.outerNode.contentDocument; }; HTMLFrameElementWrapper.prototype.getFrameBorder = function() { return this.outerNode.frameBorder; }; HTMLFrameElementWrapper.prototype.setFrameBorder = function(value) { this.outerNode.frameBorder = value; }; HTMLFrameElementWrapper.prototype.getLongDesc = function() { return this.outerNode.longDesc; }; HTMLFrameElementWrapper.prototype.setLongDesc = function(value) { this.outerNode.longDesc = value; }; HTMLFrameElementWrapper.prototype.getMarginHeight = function() { return this.outerNode.marginHeight; }; HTMLFrameElementWrapper.prototype.setMarginHeight = function(value) { this.outerNode.marginHeight = value; }; HTMLFrameElementWrapper.prototype.getMarginWidth = function() { return this.outerNode.marginWidth; }; HTMLFrameElementWrapper.prototype.setMarginWidth = function(value) { this.outerNode.marginWidth = value; }; HTMLFrameElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLFrameElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLFrameElementWrapper.prototype.getNoResize = function() { return this.outerNode.noResize; }; HTMLFrameElementWrapper.prototype.setNoResize = function(value) { this.outerNode.noResize = value; }; HTMLFrameElementWrapper.prototype.getScrolling = function() { return this.outerNode.scrolling; }; HTMLFrameElementWrapper.prototype.setScrolling = function(value) { this.outerNode.scrolling = value; }; HTMLFrameElementWrapper.prototype.getSrc = function() { return this.outerNode.src; }; HTMLFrameElementWrapper.prototype.setSrc = function(value) { this.outerNode.src = value; }; function HTMLFrameSetElementWrapper(node) { this.init(node, 'HTMLFrameSetElementWrapper', node.tagName); }; HTMLFrameSetElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['frameset'] = HTMLFrameSetElementWrapper; HTMLFrameSetElementWrapper.prototype.getCols = function() { return this.outerNode.cols; }; HTMLFrameSetElementWrapper.prototype.setCols = function(value) { this.outerNode.cols = value; }; HTMLFrameSetElementWrapper.prototype.getRows = function() { return this.outerNode.rows; }; HTMLFrameSetElementWrapper.prototype.setRows = function(value) { this.outerNode.rows = value; }; function HTMLHeadElementWrapper(node) { this.init(node, 'HTMLHeadElementWrapper', node.tagName); }; HTMLHeadElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['head'] = HTMLHeadElementWrapper; HTMLHeadElementWrapper.prototype.getProfile = function() { return this.outerNode.profile; }; HTMLHeadElementWrapper.prototype.setProfile = function(value) { this.outerNode.profile = value; }; function HTMLHeadingElementWrapper(node) { this.init(node, 'HTMLHeadingElementWrapper', node.tagName); }; HTMLHeadingElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['h1'] = HTMLHeadingElementWrapper; HTMLElementWrapper.classes['h2'] = HTMLHeadingElementWrapper; HTMLElementWrapper.classes['h3'] = HTMLHeadingElementWrapper; HTMLElementWrapper.classes['h4'] = HTMLHeadingElementWrapper; HTMLElementWrapper.classes['h5'] = HTMLHeadingElementWrapper; HTMLElementWrapper.classes['h6'] = HTMLHeadingElementWrapper; HTMLHeadingElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLHeadingElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; function HTMLHrElementWrapper(node) { this.init(node, 'HTMLHrElementWrapper', node.tagName); }; HTMLHrElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['hr'] = HTMLHrElementWrapper; HTMLHrElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLHrElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLHrElementWrapper.prototype.getNoShade = function() { return this.outerNode.noShade; }; HTMLHrElementWrapper.prototype.setNoShade = function(value) { this.outerNode.noShade = value; }; HTMLHrElementWrapper.prototype.getSize = function() { return this.outerNode.size; }; HTMLHrElementWrapper.prototype.setSize = function(value) { this.outerNode.size = value; }; HTMLHrElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLHrElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLHtmlElementWrapper(node) { this.init(node, 'HTMLHtmlElementWrapper', node.tagName); }; HTMLHtmlElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['html'] = HTMLHtmlElementWrapper; HTMLHtmlElementWrapper.prototype.getVersion = function() { return this.outerNode.version; }; HTMLHtmlElementWrapper.prototype.setVersion = function(value) { this.outerNode.version = value; }; function HTMLIFrameElementWrapper(node) { this.init(node, 'HTMLIFrameElementWrapper', node.tagName); }; HTMLIFrameElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['iframe'] = HTMLIFrameElementWrapper; HTMLIFrameElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLIFrameElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLIFrameElementWrapper.prototype.getContentDocument = function() { return this.outerNode.contentDocument; }; HTMLIFrameElementWrapper.prototype.getFrameBorder = function() { return this.outerNode.frameBorder; }; HTMLIFrameElementWrapper.prototype.setFrameBorder = function(value) { this.outerNode.frameBorder = value; }; HTMLIFrameElementWrapper.prototype.getHeight = function() { return this.outerNode.height; }; HTMLIFrameElementWrapper.prototype.setHeight = function(value) { this.outerNode.height = value; }; HTMLIFrameElementWrapper.prototype.getLongDesc = function() { return this.outerNode.longDesc; }; HTMLIFrameElementWrapper.prototype.setLongDesc = function(value) { this.outerNode.longDesc = value; }; HTMLIFrameElementWrapper.prototype.getMarginHeight = function() { return this.outerNode.marginHeight; }; HTMLIFrameElementWrapper.prototype.setMarginHeight = function(value) { this.outerNode.marginHeight = value; }; HTMLIFrameElementWrapper.prototype.getMarginWidth = function() { return this.outerNode.marginWidth; }; HTMLIFrameElementWrapper.prototype.setMarginWidth = function(value) { this.outerNode.marginWidth = value; }; HTMLIFrameElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLIFrameElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLIFrameElementWrapper.prototype.getScrolling = function() { return this.outerNode.scrolling; }; HTMLIFrameElementWrapper.prototype.setScrolling = function(value) { this.outerNode.scrolling = value; }; HTMLIFrameElementWrapper.prototype.getSrc = function() { return this.outerNode.src; }; HTMLIFrameElementWrapper.prototype.setSrc = function(value) { this.outerNode.src = value; }; HTMLIFrameElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLIFrameElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLImageElementWrapper(node) { this.init(node, 'HTMLImageElementWrapper', node.tagName); }; HTMLImageElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['img'] = HTMLImageElementWrapper; HTMLImageElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLImageElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLImageElementWrapper.prototype.getAlt = function() { return this.outerNode.alt; }; HTMLImageElementWrapper.prototype.setAlt = function(value) { this.outerNode.alt = value; }; HTMLImageElementWrapper.prototype.getBorder = function() { return this.outerNode.border; }; HTMLImageElementWrapper.prototype.setBorder = function(value) { this.outerNode.border = value; }; HTMLImageElementWrapper.prototype.getHeight = function() { return this.outerNode.height; }; HTMLImageElementWrapper.prototype.setHeight = function(value) { this.outerNode.height = value; }; HTMLImageElementWrapper.prototype.getHspace = function() { return this.outerNode.hspace; }; HTMLImageElementWrapper.prototype.setHspace = function(value) { this.outerNode.hspace = value; }; HTMLImageElementWrapper.prototype.getIsMap = function() { return this.outerNode.isMap; }; HTMLImageElementWrapper.prototype.setIsMap = function(value) { this.outerNode.isMap = value; }; HTMLImageElementWrapper.prototype.getLongDesc = function() { return this.outerNode.longDesc; }; HTMLImageElementWrapper.prototype.setLongDesc = function(value) { this.outerNode.longDesc = value; }; HTMLImageElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLImageElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLImageElementWrapper.prototype.getSrc = function() { return this.outerNode.src; }; HTMLImageElementWrapper.prototype.setSrc = function(value) { this.outerNode.src = value; }; HTMLImageElementWrapper.prototype.getUseMap = function() { return this.outerNode.useMap; }; HTMLImageElementWrapper.prototype.setUseMap = function(value) { this.outerNode.useMap = value; }; HTMLImageElementWrapper.prototype.getVspace = function() { return this.outerNode.vspace; }; HTMLImageElementWrapper.prototype.setVspace = function(value) { this.outerNode.vspace = value; }; HTMLImageElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLImageElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLInputElementWrapper(node) { this.init(node, 'HTMLInputElementWrapper', node.tagName); }; HTMLInputElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['input'] = HTMLInputElementWrapper; HTMLInputElementWrapper.prototype.getDefaultValue = function() { return this.outerNode.defaultValue; }; HTMLInputElementWrapper.prototype.setDefaultValue = function(value) { this.outerNode.defaultValue = value; }; HTMLInputElementWrapper.prototype.getDefaultChecked = function() { return this.outerNode.defaultChecked; }; HTMLInputElementWrapper.prototype.setDefaultChecked = function(value) { this.outerNode.defaultChecked = value; }; HTMLInputElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLInputElementWrapper.prototype.getAccept = function() { return this.outerNode.accept; }; HTMLInputElementWrapper.prototype.setAccept = function(value) { this.outerNode.accept = value; }; HTMLInputElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLInputElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLInputElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLInputElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLInputElementWrapper.prototype.getAlt = function() { return this.outerNode.alt; }; HTMLInputElementWrapper.prototype.setAlt = function(value) { this.outerNode.alt = value; }; HTMLInputElementWrapper.prototype.getChecked = function() { return this.outerNode.checked; }; HTMLInputElementWrapper.prototype.setChecked = function(value) { this.outerNode.checked = value; }; HTMLInputElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLInputElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLInputElementWrapper.prototype.getMaxLength = function() { return this.outerNode.maxLength; }; HTMLInputElementWrapper.prototype.setMaxLength = function(value) { this.outerNode.maxLength = value; }; HTMLInputElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLInputElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLInputElementWrapper.prototype.getReadOnly = function() { return this.outerNode.readOnly; }; HTMLInputElementWrapper.prototype.setReadOnly = function(value) { this.outerNode.readOnly = value; }; HTMLInputElementWrapper.prototype.getSize = function() { return this.outerNode.size; }; HTMLInputElementWrapper.prototype.setSize = function(value) { this.outerNode.size = value; }; HTMLInputElementWrapper.prototype.getSrc = function() { return this.outerNode.src; }; HTMLInputElementWrapper.prototype.setSrc = function(value) { this.outerNode.src = value; }; HTMLInputElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLInputElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLInputElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLInputElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLInputElementWrapper.prototype.getUseMap = function() { return this.outerNode.useMap; }; HTMLInputElementWrapper.prototype.setUseMap = function(value) { this.outerNode.useMap = value; }; HTMLInputElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLInputElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; HTMLInputElementWrapper.prototype.blur = function() { return this.outerNode.blur(); }; HTMLInputElementWrapper.prototype.focus = function() { return this.outerNode.focus(); }; HTMLInputElementWrapper.prototype.select = function() { return this.outerNode.select(); }; HTMLInputElementWrapper.prototype.click = function() { return this.outerNode.click(); }; function HTMLIsIndexElementWrapper(node) { this.init(node, 'HTMLIsIndexElementWrapper', node.tagName); }; HTMLIsIndexElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['isindex'] = HTMLIsIndexElementWrapper; HTMLIsIndexElementWrapper.prototype.getForm = function() { return this.outerNode.form; }; HTMLIsIndexElementWrapper.prototype.getPrompt = function() { return this.outerNode.prompt; }; HTMLIsIndexElementWrapper.prototype.setPrompt = function(value) { this.outerNode.prompt = value; }; function HTMLLabelElementWrapper(node) { this.init(node, 'HTMLLabelElementWrapper', node.tagName); }; HTMLLabelElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['label'] = HTMLLabelElementWrapper; HTMLLabelElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLLabelElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLLabelElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLLabelElementWrapper.prototype.getHtmlFor = function() { return this.outerNode.htmlFor; }; HTMLLabelElementWrapper.prototype.setHtmlFor = function(value) { this.outerNode.htmlFor = value; }; function HTMLLegendElementWrapper(node) { this.init(node, 'HTMLLegendElementWrapper', node.tagName); }; HTMLLegendElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['legend'] = HTMLLegendElementWrapper; HTMLLegendElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLLegendElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLLegendElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLLegendElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLLegendElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; function HTMLLIElementWrapper(node) { this.init(node, 'HTMLLIElementWrapper', node.tagName); }; HTMLLIElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['li'] = HTMLLIElementWrapper; HTMLLIElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLLIElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLLIElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLLIElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; function HTMLLinkElementWrapper(node) { this.init(node, 'HTMLLinkElementWrapper', node.tagName); }; HTMLLinkElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['link'] = HTMLLinkElementWrapper; HTMLLinkElementWrapper.prototype.getCharset = function() { return this.outerNode.charset; }; HTMLLinkElementWrapper.prototype.setCharset = function(value) { this.outerNode.charset = value; }; HTMLLinkElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLLinkElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLLinkElementWrapper.prototype.getHref = function() { return this.outerNode.href; }; HTMLLinkElementWrapper.prototype.setHref = function(value) { this.outerNode.href = value; }; HTMLLinkElementWrapper.prototype.getHreflang = function() { return this.outerNode.hreflang; }; HTMLLinkElementWrapper.prototype.setHreflang = function(value) { this.outerNode.hreflang = value; }; HTMLLinkElementWrapper.prototype.getMedia = function() { return this.outerNode.media; }; HTMLLinkElementWrapper.prototype.setMedia = function(value) { this.outerNode.media = value; }; HTMLLinkElementWrapper.prototype.getRel = function() { return this.outerNode.rel; }; HTMLLinkElementWrapper.prototype.setRel = function(value) { this.outerNode.rel = value; }; HTMLLinkElementWrapper.prototype.getRev = function() { return this.outerNode.rev; }; HTMLLinkElementWrapper.prototype.setRev = function(value) { this.outerNode.rev = value; }; HTMLLinkElementWrapper.prototype.getTarget = function() { return this.outerNode.target; }; HTMLLinkElementWrapper.prototype.setTarget = function(value) { this.outerNode.target = value; }; HTMLLinkElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLLinkElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; function HTMLMapElementWrapper(node) { this.init(node, 'HTMLMapElementWrapper', node.tagName); }; HTMLMapElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['map'] = HTMLMapElementWrapper; HTMLMapElementWrapper.prototype.getAreas = function() { return new HTMLCollectionWrapper(this.outerNode.areas); }; HTMLMapElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLMapElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; function HTMLMenuElementWrapper(node) { this.init(node, 'HTMLMenuElementWrapper', node.tagName); }; HTMLMenuElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['menu'] = HTMLMenuElementWrapper; HTMLMenuElementWrapper.prototype.getCompact = function() { return this.outerNode.compact; }; HTMLMenuElementWrapper.prototype.setCompact = function(value) { this.outerNode.compact = value; }; function HTMLMetaElementWrapper(node) { this.init(node, 'HTMLMetaElementWrapper', node.tagName); }; HTMLMetaElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['meta'] = HTMLMetaElementWrapper; HTMLMetaElementWrapper.prototype.getContent = function() { return this.outerNode.content; }; HTMLMetaElementWrapper.prototype.setContent = function(value) { this.outerNode.content = value; }; HTMLMetaElementWrapper.prototype.getHttpEquiv = function() { return this.outerNode.httpEquiv; }; HTMLMetaElementWrapper.prototype.setHttpEquiv = function(value) { this.outerNode.httpEquiv = value; }; HTMLMetaElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLMetaElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLMetaElementWrapper.prototype.getScheme = function() { return this.outerNode.scheme; }; HTMLMetaElementWrapper.prototype.setScheme = function(value) { this.outerNode.scheme = value; }; function HTMLModElementWrapper(node) { this.init(node, 'HTMLModElementWrapper', node.tagName); }; HTMLModElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['ins'] = HTMLModElementWrapper; HTMLElementWrapper.classes['del'] = HTMLModElementWrapper; HTMLModElementWrapper.prototype.getCite = function() { return this.outerNode.cite; }; HTMLModElementWrapper.prototype.setCite = function(value) { this.outerNode.cite = value; }; HTMLModElementWrapper.prototype.getDateTime = function() { return this.outerNode.dateTime; }; HTMLModElementWrapper.prototype.setDateTime = function(value) { this.outerNode.dateTime = value; }; function HTMLObjectElementWrapper(node) { this.init(node, 'HTMLObjectElementWrapper', node.tagName); }; HTMLObjectElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['object'] = HTMLObjectElementWrapper; HTMLObjectElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLObjectElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLObjectElementWrapper.prototype.getArchive = function() { return this.outerNode.archive; }; HTMLObjectElementWrapper.prototype.setArchive = function(value) { this.outerNode.archive = value; }; HTMLObjectElementWrapper.prototype.getBorder = function() { return this.outerNode.border; }; HTMLObjectElementWrapper.prototype.setBorder = function(value) { this.outerNode.border = value; }; HTMLObjectElementWrapper.prototype.getCode = function() { return this.outerNode.code; }; HTMLObjectElementWrapper.prototype.setCode = function(value) { this.outerNode.code = value; }; HTMLObjectElementWrapper.prototype.getCodeBase = function() { return this.outerNode.codeBase; }; HTMLObjectElementWrapper.prototype.setCodeBase = function(value) { this.outerNode.codeBase = value; }; HTMLObjectElementWrapper.prototype.getCodeType = function() { return this.outerNode.codeType; }; HTMLObjectElementWrapper.prototype.setCodeType = function(value) { this.outerNode.codeType = value; }; HTMLObjectElementWrapper.prototype.getContentDocument = function() { return this.outerNode.contentDocument; }; HTMLObjectElementWrapper.prototype.getData = function() { return this.outerNode.data; }; HTMLObjectElementWrapper.prototype.setData = function(value) { this.outerNode.data = value; }; HTMLObjectElementWrapper.prototype.getDeclare = function() { return this.outerNode.declare; }; HTMLObjectElementWrapper.prototype.setDeclare = function(value) { this.outerNode.declare = value; }; HTMLObjectElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLObjectElementWrapper.prototype.setForm = function(value) { this.outerNode.form = value; }; HTMLObjectElementWrapper.prototype.getHeight = function() { return this.outerNode.height; }; HTMLObjectElementWrapper.prototype.setHeight = function(value) { this.outerNode.height = value; }; HTMLObjectElementWrapper.prototype.getHspace = function() { return this.outerNode.hspace; }; HTMLObjectElementWrapper.prototype.setHspace = function(value) { this.outerNode.hspace = value; }; HTMLObjectElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLObjectElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLObjectElementWrapper.prototype.getStandBy = function() { return this.outerNode.standBy; }; HTMLObjectElementWrapper.prototype.setStandBy = function(value) { this.outerNode.standBy = value; }; HTMLObjectElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLObjectElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLObjectElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLObjectElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLObjectElementWrapper.prototype.getUseMap = function() { return this.outerNode.useMap; }; HTMLObjectElementWrapper.prototype.setUseMap = function(value) { this.outerNode.useMap = value; }; HTMLObjectElementWrapper.prototype.getVspace = function() { return this.outerNode.vspace; }; HTMLObjectElementWrapper.prototype.setVspace = function(value) { this.outerNode.vspace = value; }; HTMLObjectElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLObjectElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLOListElementWrapper(node) { this.init(node, 'HTMLOListElementWrapper', node.tagName); }; HTMLOListElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['olist'] = HTMLOListElementWrapper; HTMLOListElementWrapper.prototype.getCompact = function() { return this.outerNode.compact; }; HTMLOListElementWrapper.prototype.setCompact = function(value) { this.outerNode.compact = value; }; HTMLOListElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLOListElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLOListElementWrapper.prototype.getStart = function() { return this.outerNode.start; }; HTMLOListElementWrapper.prototype.setStart = function(value) { this.outerNode.start = value; }; function HTMLOptGroupElementWrapper(node) { this.init(node, 'HTMLOptGroupElementWrapper', node.tagName); }; HTMLOptGroupElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['optgroup'] = HTMLOptGroupElementWrapper; HTMLOptGroupElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLOptGroupElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLOptGroupElementWrapper.prototype.getLabel = function() { return this.outerNode.label; }; HTMLOptGroupElementWrapper.prototype.setLabel = function(value) { this.outerNode.label = value; }; function HTMLOptionElementWrapper(node) { this.init(node, 'HTMLOptionElementWrapper', node.tagName); }; HTMLOptionElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['option'] = HTMLOptionElementWrapper; HTMLOptionElementWrapper.prototype.getDefaultSelected = function() { return this.outerNode.defaultSelected; }; HTMLOptionElementWrapper.prototype.setDefaultSelected = function(value) { this.outerNode.defaultSelected = value; }; HTMLOptionElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLOptionElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLOptionElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLOptionElementWrapper.prototype.getIndex = function() { return this.outerNode.index; }; HTMLOptionElementWrapper.prototype.getLabel = function() { return this.outerNode.label; }; HTMLOptionElementWrapper.prototype.setLabel = function(value) { this.outerNode.label = value; }; HTMLOptionElementWrapper.prototype.getSelected = function() { return this.outerNode.selected; }; HTMLOptionElementWrapper.prototype.setSelected = function(value) { this.outerNode.selected = value; }; HTMLOptionElementWrapper.prototype.getText = function() { return this.outerNode.text; }; HTMLOptionElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLOptionElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; function HTMLParagraphElementWrapper(node) { this.init(node, 'HTMLParagraphElementWrapper', node.tagName); }; HTMLParagraphElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['p'] = HTMLParagraphElementWrapper; HTMLParagraphElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLParagraphElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; function HTMLParamElementWrapper(node) { this.init(node, 'HTMLParamElementWrapper', node.tagName); }; HTMLParamElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['param'] = HTMLParamElementWrapper; HTMLParamElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLParamElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLParamElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLParamElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; HTMLParamElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLParamElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; HTMLParamElementWrapper.prototype.getValueType = function() { return this.outerNode.valueType; }; HTMLParamElementWrapper.prototype.setValueType = function(value) { this.outerNode.valueType = value; }; function HTMLPreElementWrapper(node) { this.init(node, 'HTMLPreElementWrapper', node.tagName); }; HTMLPreElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['pre'] = HTMLPreElementWrapper; HTMLPreElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLPreElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLQuoteElementWrapper(node) { this.init(node, 'HTMLQuoteElementWrapper', node.tagName); }; HTMLQuoteElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['q'] = HTMLQuoteElementWrapper; HTMLElementWrapper.classes['blockquote'] = HTMLQuoteElementWrapper; HTMLQuoteElementWrapper.prototype.getCite = function() { return this.outerNode.cite; }; HTMLQuoteElementWrapper.prototype.setCite = function(value) { this.outerNode.cite = value; }; function HTMLScriptElementWrapper(node) { this.init(node, 'HTMLScriptElementWrapper', node.tagName); }; HTMLScriptElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['script'] = HTMLScriptElementWrapper; HTMLScriptElementWrapper.prototype.getCharset = function() { return this.outerNode.charset; }; HTMLScriptElementWrapper.prototype.setCharset = function(value) { this.outerNode.charset = value; }; HTMLScriptElementWrapper.prototype.getDefer = function() { return this.outerNode.defer; }; HTMLScriptElementWrapper.prototype.setDefer = function(value) { this.outerNode.defer = value; }; HTMLScriptElementWrapper.prototype.getEvent = function() { return this.outerNode.event; }; HTMLScriptElementWrapper.prototype.setEvent = function(value) { this.outerNode.event = value; }; HTMLScriptElementWrapper.prototype.getHtmlFor = function() { return this.outerNode.htmlFor; }; HTMLScriptElementWrapper.prototype.setHtmlFor = function(value) { this.outerNode.htmlFor = value; }; HTMLScriptElementWrapper.prototype.getSrc = function() { return this.outerNode.src; }; HTMLScriptElementWrapper.prototype.setSrc = function(value) { this.outerNode.src = value; }; HTMLScriptElementWrapper.prototype.getText = function() { return this.outerNode.text; }; HTMLScriptElementWrapper.prototype.setText = function(value) { this.outerNode.text = value; }; HTMLScriptElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLScriptElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; function HTMLSelectElementWrapper(node) { this.init(node, 'HTMLSelectElementWrapper', node.tagName); }; HTMLSelectElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['select'] = HTMLSelectElementWrapper; HTMLSelectElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLSelectElementWrapper.prototype.getSelectedIndex = function() { return this.outerNode.selectedIndex; }; HTMLSelectElementWrapper.prototype.setSelectedIndex = function(value) { this.outerNode.selectedIndex = value; }; HTMLSelectElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLSelectElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; HTMLSelectElementWrapper.prototype.getLength = function() { return this.outerNode.length; }; HTMLSelectElementWrapper.prototype.setLength = function(value) { this.outerNode.length = value; }; HTMLSelectElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLSelectElementWrapper.prototype.getOptions = function() { return new HTMLOptionsCollectionWrapper(this.outerNode.options); }; HTMLSelectElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLSelectElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLSelectElementWrapper.prototype.getMultiple = function() { return this.outerNode.multiple; }; HTMLSelectElementWrapper.prototype.setMultiple = function(value) { this.outerNode.multiple = value; }; HTMLSelectElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLSelectElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLSelectElementWrapper.prototype.getSize = function() { return this.outerNode.size; }; HTMLSelectElementWrapper.prototype.setSize = function(value) { this.outerNode.size = value; }; HTMLSelectElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLSelectElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLSelectElementWrapper.prototype.add = function(element,before) { return this.outerNode.add(element,before); }; HTMLSelectElementWrapper.prototype.remove = function(index) { return this.outerNode.remove(index); }; HTMLSelectElementWrapper.prototype.blur = function() { return this.outerNode.blur(); }; HTMLSelectElementWrapper.prototype.focus = function() { return this.outerNode.focus(); }; function HTMLStyleElementWrapper(node) { this.init(node, 'HTMLStyleElementWrapper', node.tagName); }; HTMLStyleElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['style'] = HTMLStyleElementWrapper; HTMLStyleElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLStyleElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLStyleElementWrapper.prototype.getMedia = function() { return this.outerNode.media; }; HTMLStyleElementWrapper.prototype.setMedia = function(value) { this.outerNode.media = value; }; HTMLStyleElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLStyleElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; function HTMLTableCaptionElementWrapper(node) { this.init(node, 'HTMLTableCaptionElementWrapper', node.tagName); }; HTMLTableCaptionElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['caption'] = HTMLTableCaptionElementWrapper; HTMLTableCaptionElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableCaptionElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; function HTMLTableCellElementWrapper(node) { this.init(node, 'HTMLTableCellElementWrapper', node.tagName); }; HTMLTableCellElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['td'] = HTMLTableCellElementWrapper; HTMLElementWrapper.classes['th'] = HTMLTableCellElementWrapper; HTMLTableCellElementWrapper.prototype.getAbbr = function() { return this.outerNode.abbr; }; HTMLTableCellElementWrapper.prototype.setAbbr = function(value) { this.outerNode.abbr = value; }; HTMLTableCellElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableCellElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLTableCellElementWrapper.prototype.getAxis = function() { return this.outerNode.axis; }; HTMLTableCellElementWrapper.prototype.setAxis = function(value) { this.outerNode.axis = value; }; HTMLTableCellElementWrapper.prototype.getBgColor = function() { return this.outerNode.bgColor; }; HTMLTableCellElementWrapper.prototype.setBgColor = function(value) { this.outerNode.bgColor = value; }; HTMLTableCellElementWrapper.prototype.getCellIndex = function() { return this.outerNode.cellIndex; }; HTMLTableCellElementWrapper.prototype.getCh = function() { return this.outerNode.ch; }; HTMLTableCellElementWrapper.prototype.setCh = function(value) { this.outerNode.ch = value; }; HTMLTableCellElementWrapper.prototype.getChOff = function() { return this.outerNode.chOff; }; HTMLTableCellElementWrapper.prototype.setChOff = function(value) { this.outerNode.chOff = value; }; HTMLTableCellElementWrapper.prototype.getColSpan = function() { return this.outerNode.colSpan; }; HTMLTableCellElementWrapper.prototype.setColSpan = function(value) { this.outerNode.colSpan = value; }; HTMLTableCellElementWrapper.prototype.getHeaders = function() { return this.outerNode.headers; }; HTMLTableCellElementWrapper.prototype.setHeaders = function(value) { this.outerNode.headers = value; }; HTMLTableCellElementWrapper.prototype.getHeight = function() { return this.outerNode.height; }; HTMLTableCellElementWrapper.prototype.setHeight = function(value) { this.outerNode.height = value; }; HTMLTableCellElementWrapper.prototype.getNoWrap = function() { return this.outerNode.noWrap; }; HTMLTableCellElementWrapper.prototype.setNoWrap = function(value) { this.outerNode.noWrap = value; }; HTMLTableCellElementWrapper.prototype.getRowSpan = function() { return this.outerNode.rowSpan; }; HTMLTableCellElementWrapper.prototype.setRowSpan = function(value) { this.outerNode.rowSpan = value; }; HTMLTableCellElementWrapper.prototype.getScope = function() { return this.outerNode.scope; }; HTMLTableCellElementWrapper.prototype.setScope = function(value) { this.outerNode.scope = value; }; HTMLTableCellElementWrapper.prototype.getValign = function() { return this.outerNode.valign; }; HTMLTableCellElementWrapper.prototype.setValign = function(value) { this.outerNode.valign = value; }; HTMLTableCellElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLTableCellElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLTableColElementWrapper(node) { this.init(node, 'HTMLTableColElementWrapper', node.tagName); }; HTMLTableColElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['col'] = HTMLTableColElementWrapper; HTMLTableColElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableColElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLTableColElementWrapper.prototype.getCh = function() { return this.outerNode.ch; }; HTMLTableColElementWrapper.prototype.setCh = function(value) { this.outerNode.ch = value; }; HTMLTableColElementWrapper.prototype.getChOff = function() { return this.outerNode.chOff; }; HTMLTableColElementWrapper.prototype.setChOff = function(value) { this.outerNode.chOff = value; }; HTMLTableColElementWrapper.prototype.getSpan = function() { return this.outerNode.span; }; HTMLTableColElementWrapper.prototype.setSpan = function(value) { this.outerNode.span = value; }; HTMLTableColElementWrapper.prototype.getVAlign = function() { return this.outerNode.vAlign; }; HTMLTableColElementWrapper.prototype.setVAlign = function(value) { this.outerNode.vAlign = value; }; HTMLTableColElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLTableColElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; function HTMLTableElementWrapper(node) { this.init(node, 'HTMLTableElementWrapper', node.tagName); }; HTMLTableElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['table'] = HTMLTableElementWrapper; HTMLTableElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLTableElementWrapper.prototype.getBgColor = function() { return this.outerNode.bgColor; }; HTMLTableElementWrapper.prototype.setBgColor = function(value) { this.outerNode.bgColor = value; }; HTMLTableElementWrapper.prototype.getBorder = function() { return this.outerNode.border; }; HTMLTableElementWrapper.prototype.setBorder = function(value) { this.outerNode.border = value; }; HTMLTableElementWrapper.prototype.getCaption = function() { return application.wrapHTMLNode(this.outerNode.caption); }; HTMLTableElementWrapper.prototype.setCaption = function(value) { this.outerNode.caption = value; }; HTMLTableElementWrapper.prototype.getCellPadding = function() { return this.outerNode.cellPadding; }; HTMLTableElementWrapper.prototype.setCellPadding = function(value) { this.outerNode.cellPadding = value; }; HTMLTableElementWrapper.prototype.getCellSpacing = function() { return this.outerNode.cellSpacing; }; HTMLTableElementWrapper.prototype.setCellSpacing = function(value) { this.outerNode.cellSpacing = value; }; HTMLTableElementWrapper.prototype.getFrame = function() { return this.outerNode.frame; }; HTMLTableElementWrapper.prototype.setFrame = function(value) { this.outerNode.frame = value; }; HTMLTableElementWrapper.prototype.getRows = function() { return new HTMLCollectionWrapper(this.outerNode.rows); }; HTMLTableElementWrapper.prototype.getRules = function() { return this.outerNode.rules; }; HTMLTableElementWrapper.prototype.setRules = function(value) { this.outerNode.rules = value; }; HTMLTableElementWrapper.prototype.getSummary = function() { return this.outerNode.summary; }; HTMLTableElementWrapper.prototype.setSummary = function(value) { this.outerNode.summary = value; }; HTMLTableElementWrapper.prototype.getTBodies = function() { return new HTMLCollectionWrapper(this.outerNode.tBodies); }; HTMLTableElementWrapper.prototype.getTFoot = function() { return application.wrapHTMLNode(this.outerNode.tFoot); }; HTMLTableElementWrapper.prototype.setTFoot = function(value) { this.outerNode.tFoot = value; }; HTMLTableElementWrapper.prototype.getTHead = function() { return application.wrapHTMLNode(this.outerNode.tHead); }; HTMLTableElementWrapper.prototype.setTHead = function(value) { this.outerNode.tHead = value; }; HTMLTableElementWrapper.prototype.getWidth = function() { return this.outerNode.width; }; HTMLTableElementWrapper.prototype.setWidth = function(value) { this.outerNode.width = value; }; HTMLTableElementWrapper.prototype.createCaption = function() { return application.wrapHTMLNode(this.outerNode.createCaption()); }; HTMLTableElementWrapper.prototype.createTFoot = function() { return application.wrapHTMLNode(this.outerNode.createTFoot()); }; HTMLTableElementWrapper.prototype.createTHead = function() { return application.wrapHTMLNode(this.outerNode.createTHead()); }; HTMLTableElementWrapper.prototype.deleteCaption = function() { return this.outerNode.deleteCaption(); }; HTMLTableElementWrapper.prototype.deleteRow = function(index) { return this.outerNode.deleteRow(index); }; HTMLTableElementWrapper.prototype.deleteTFoot = function() { return this.outerNode.deleteTFoot(); }; HTMLTableElementWrapper.prototype.deleteTHead = function() { return this.outerNode.deleteTHead(); }; HTMLTableElementWrapper.prototype.insertRow = function(index) { return application.wrapHTMLNode(this.outerNode.insertRow(index)); }; function HTMLTableRowElementWrapper(node) { this.init(node, 'HTMLTableRowElementWrapper', node.tagName); }; HTMLTableRowElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['tr'] = HTMLTableRowElementWrapper; HTMLTableRowElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableRowElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLTableRowElementWrapper.prototype.getBgColor = function() { return this.outerNode.bgColor; }; HTMLTableRowElementWrapper.prototype.setBgColor = function(value) { this.outerNode.bgColor = value; }; HTMLTableRowElementWrapper.prototype.getCells = function() { return new HTMLCollectionWrapper(this.outerNode.cells); }; HTMLTableRowElementWrapper.prototype.getCh = function() { return this.outerNode.ch; }; HTMLTableRowElementWrapper.prototype.setCh = function(value) { this.outerNode.ch = value; }; HTMLTableRowElementWrapper.prototype.getChOff = function() { return this.outerNode.chOff; }; HTMLTableRowElementWrapper.prototype.setChOff = function(value) { this.outerNode.chOff = value; }; HTMLTableRowElementWrapper.prototype.getRowIndex = function() { return this.outerNode.rowIndex; }; HTMLTableRowElementWrapper.prototype.getSectionRowIndex = function() { return this.outerNode.sectionRowIndex; }; HTMLTableRowElementWrapper.prototype.getVAlign = function() { return this.outerNode.vAlign; }; HTMLTableRowElementWrapper.prototype.setVAlign = function(value) { this.outerNode.vAlign = value; }; HTMLTableRowElementWrapper.prototype.deleteCell = function(index) { return this.outerNode.deleteCell(index); }; HTMLTableRowElementWrapper.prototype.insertCell = function(index) { return application.wrapHTMLNode(this.outerNode.insertCell(index)); }; function HTMLTableSectionElementWrapper(node) { this.init(node, 'HTMLTableSectionElementWrapper', node.tagName); }; HTMLTableSectionElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['thead'] = HTMLTableSectionElementWrapper; HTMLElementWrapper.classes['tfoot'] = HTMLTableSectionElementWrapper; HTMLElementWrapper.classes['tbody'] = HTMLTableSectionElementWrapper; HTMLTableSectionElementWrapper.prototype.getAlign = function() { return this.outerNode.align; }; HTMLTableSectionElementWrapper.prototype.setAlign = function(value) { this.outerNode.align = value; }; HTMLTableSectionElementWrapper.prototype.getCh = function() { return this.outerNode.ch; }; HTMLTableSectionElementWrapper.prototype.setCh = function(value) { this.outerNode.ch = value; }; HTMLTableSectionElementWrapper.prototype.getChOff = function() { return this.outerNode.chOff; }; HTMLTableSectionElementWrapper.prototype.setChOff = function(value) { this.outerNode.chOff = value; }; HTMLTableSectionElementWrapper.prototype.getRows = function() { return new HTMLCollectionWrapper(this.outerNode.rows); }; HTMLTableSectionElementWrapper.prototype.getVAlign = function() { return this.outerNode.vAlign; }; HTMLTableSectionElementWrapper.prototype.setVAlign = function(value) { this.outerNode.vAlign = value; }; HTMLTableSectionElementWrapper.prototype.deleteRow = function(index) { return this.outerNode.deleteRow(index); }; HTMLTableSectionElementWrapper.prototype.insertRow = function(index) { return application.wrapHTMLNode(this.outerNode.insertRow(index)); }; function HTMLTextAreaElementWrapper(node) { this.init(node, 'HTMLTextAreaElementWrapper', node.tagName); }; HTMLTextAreaElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['textarea'] = HTMLTextAreaElementWrapper; HTMLTextAreaElementWrapper.prototype.getDefaultValue = function() { return this.outerNode.defaultValue; }; HTMLTextAreaElementWrapper.prototype.setDefaultValue = function(value) { this.outerNode.defaultValue = value; }; HTMLTextAreaElementWrapper.prototype.getForm = function() { return application.wrapHTMLNode(this.outerNode.form); }; HTMLTextAreaElementWrapper.prototype.getAccessKey = function() { return this.outerNode.accessKey; }; HTMLTextAreaElementWrapper.prototype.setAccessKey = function(value) { this.outerNode.accessKey = value; }; HTMLTextAreaElementWrapper.prototype.getCols = function() { return this.outerNode.cols; }; HTMLTextAreaElementWrapper.prototype.setCols = function(value) { this.outerNode.cols = value; }; HTMLTextAreaElementWrapper.prototype.getDisabled = function() { return this.outerNode.disabled; }; HTMLTextAreaElementWrapper.prototype.setDisabled = function(value) { this.outerNode.disabled = value; }; HTMLTextAreaElementWrapper.prototype.getName = function() { return this.outerNode.name; }; HTMLTextAreaElementWrapper.prototype.setName = function(value) { this.outerNode.name = value; }; HTMLTextAreaElementWrapper.prototype.getReadOnly = function() { return this.outerNode.readOnly; }; HTMLTextAreaElementWrapper.prototype.setReadOnly = function(value) { this.outerNode.readOnly = value; }; HTMLTextAreaElementWrapper.prototype.getRows = function() { return this.outerNode.rows; }; HTMLTextAreaElementWrapper.prototype.setRows = function(value) { this.outerNode.rows = value; }; HTMLTextAreaElementWrapper.prototype.getTabIndex = function() { return this.outerNode.tabIndex; }; HTMLTextAreaElementWrapper.prototype.setTabIndex = function(value) { this.outerNode.tabIndex = value; }; HTMLTextAreaElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLTextAreaElementWrapper.prototype.getValue = function() { return this.outerNode.value; }; HTMLTextAreaElementWrapper.prototype.setValue = function(value) { this.outerNode.value = value; }; HTMLTextAreaElementWrapper.prototype.blur = function() { return this.outerNode.blur(); }; HTMLTextAreaElementWrapper.prototype.focus = function() { return this.outerNode.focus(); }; HTMLTextAreaElementWrapper.prototype.select = function() { return this.outerNode.select(); }; function HTMLTitleElementWrapper(node) { this.init(node, 'HTMLTitleElementWrapper', node.tagName); }; HTMLTitleElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['title'] = HTMLTitleElementWrapper; HTMLTitleElementWrapper.prototype.getText = function() { return this.outerNode.text; }; HTMLTitleElementWrapper.prototype.setText = function(value) { this.outerNode.text = value; }; function HTMLUListElementWrapper(node) { this.init(node, 'HTMLUListElementWrapper', node.tagName); }; HTMLUListElementWrapper.prototype = new HTMLElementWrapper(); HTMLElementWrapper.classes['ulist'] = HTMLUListElementWrapper; HTMLUListElementWrapper.prototype.getCompact = function() { return this.outerNode.compact; }; HTMLUListElementWrapper.prototype.setCompact = function(value) { this.outerNode.compact = value; }; HTMLUListElementWrapper.prototype.getType = function() { return this.outerNode.type; }; HTMLUListElementWrapper.prototype.setType = function(value) { this.outerNode.type = value; }; 