# File lib/cgikit.rb, line 3152
        def run
                @attr_name      = element_id.to_s
                @attr_type      = fetch( 'type' )      # String
                @attr_value     = fetch( 'value' )     # String
                @attr_size      = fetch( 'size' )      # Integer
                @attr_maxlength = fetch( 'maxlength' ) # Integer
                if @attr_type == nil then @attr_type = 'text' end

                check_required_attributes( ['value'] )

                @attr_value = CKUtilities.escape_html @attr_value
        end