module.exports = new Class
({
Extends: Htk.Field
,Tag: 'htk-html'
,initialize: function (props)
{
this.createElement ('div');
this.parent (props);
}
,putValue: function (value)
this.node.innerHTML = value;
});