It seems that the default behavior of the control is to set autocomplete="off" which is fine except Chrome does not like to adhere to this standard.
Developers should be allowed to override the this default behavior if need be to set the autocomplete type of the textbox, however, setting this via the htmlattributes does not do anything.
Example using the MVC Wrappers:
html.Kendo().MaskedTextBoxFor(e).Mask(mask).HtmlAttributes(new { @class = "form-control", autocomplete = "tel-national" })