refactor(core): remove misc, completely unused functions from DomAdapter (#32278)

PR Close #32278
This commit is contained in:
Kara Erickson
2019-08-22 17:09:07 -07:00
committed by atscott
parent bceeeba405
commit 24127a2492
8 changed files with 6 additions and 100 deletions

View File

@ -374,14 +374,6 @@ const SCHEMA: string[] = [
':svg:cursor^:svg:|',
];
const attrToPropMap: {[name: string]: string} = <any>{
'class': 'className',
'formaction': 'formAction',
'innerHtml': 'innerHTML',
'readonly': 'readOnly',
'tabindex': 'tabIndex'
};
const EVENT = 'event';
const BOOLEAN = 'boolean';
const NUMBER = 'number';