browser-x
Version:
A partial implementation of the W3C DOM API on top of an HTML5 parser and serializer.
43 lines (37 loc) • 984 B
JavaScript
var HTMLElement = require('../html-element');
function HTMLButtonElement(document, name, namespaceURI) {
HTMLElement.call(this, document, name, namespaceURI);
}
HTMLButtonElement.prototype = Object.create(HTMLElement.prototype, {
type: {
get: function() {
var type = this.getAttribute('type');
return type || 'submit';
}
},
value: {
get: function() {
return this.getAttribute('value') || '';
}
},
disabled: {
get: function() {
return this.hasAttribute('disabled');
}
},
form: {
get: function() {
var e = this;
while (e) {
if (e.nodeName === 'FORM') {
return e;
}
e = e.parentNode;
}
return null;
}
}
});
HTMLButtonElement.prototype.constructor = HTMLButtonElement;
module.exports = HTMLButtonElement;
;