@@ -269,7 +269,7 @@ describe('MdInput', function () {
269269 expect ( el ) . not . toBeNull ( ) ;
270270 expect ( el . getAttribute ( 'autocomplete' ) ) . toBeNull ( ) ;
271271
272- input . autoComplete = 'on' ;
272+ input . autocomplete = 'on' ;
273273 fixture . detectChanges ( ) ;
274274 expect ( el . getAttribute ( 'autocomplete' ) ) . toEqual ( 'on' ) ;
275275 } ) ;
@@ -284,7 +284,7 @@ describe('MdInput', function () {
284284 expect ( el ) . not . toBeNull ( ) ;
285285 expect ( el . getAttribute ( 'autocorrect' ) ) . toBeNull ( ) ;
286286
287- input . autoCorrect = 'on' ;
287+ input . autocorrect = 'on' ;
288288 fixture . detectChanges ( ) ;
289289 expect ( el . getAttribute ( 'autocorrect' ) ) . toEqual ( 'on' ) ;
290290 } ) ;
@@ -299,7 +299,7 @@ describe('MdInput', function () {
299299 expect ( el ) . not . toBeNull ( ) ;
300300 expect ( el . getAttribute ( 'autocapitalize' ) ) . toBeNull ( ) ;
301301
302- input . autoCapitalize = 'on' ;
302+ input . autocapitalize = 'on' ;
303303 fixture . detectChanges ( ) ;
304304 expect ( el . getAttribute ( 'autocapitalize' ) ) . toEqual ( 'on' ) ;
305305 } ) ;
@@ -334,7 +334,7 @@ describe('MdInput', function () {
334334 expect ( el ) . not . toBeNull ( ) ;
335335 expect ( el . getAttribute ( 'autofocus' ) ) . toBeNull ( ) ;
336336
337- input . autoFocus = true ;
337+ input . autofocus = true ;
338338 fixture . detectChanges ( ) ;
339339 expect ( el . getAttribute ( 'autofocus' ) ) . toEqual ( '' ) ;
340340 } ) ;
@@ -442,7 +442,7 @@ describe('MdInput', function () {
442442 expect ( el ) . not . toBeNull ( ) ;
443443 expect ( el . getAttribute ( 'readonly' ) ) . toBeNull ( ) ;
444444
445- input . readOnly = true ;
445+ input . readonly = true ;
446446 fixture . detectChanges ( ) ;
447447 expect ( el . getAttribute ( 'readonly' ) ) . toEqual ( '' ) ;
448448 } ) ;
@@ -492,7 +492,7 @@ describe('MdInput', function () {
492492 expect ( el ) . not . toBeNull ( ) ;
493493 expect ( el . getAttribute ( 'spellcheck' ) ) . toEqual ( 'false' ) ;
494494
495- input . spellCheck = true ;
495+ input . spellcheck = true ;
496496 fixture . detectChanges ( ) ;
497497 expect ( el . getAttribute ( 'spellcheck' ) ) . toEqual ( 'true' ) ;
498498 } ) ;
@@ -532,7 +532,7 @@ describe('MdInput', function () {
532532 expect ( el ) . not . toBeNull ( ) ;
533533 expect ( el . getAttribute ( 'tabindex' ) ) . toEqual ( null ) ;
534534
535- input . tabIndex = 1 ;
535+ input . tabindex = 1 ;
536536 fixture . detectChanges ( ) ;
537537 expect ( el . getAttribute ( 'tabindex' ) ) . toEqual ( '1' ) ;
538538 } ) ;
@@ -630,43 +630,43 @@ class MdInputWithBlurAndFocusEvents {
630630@Component ( { template : `<md-input name="some-name"></md-input>` } )
631631class MdInputWithNameTestController { }
632632
633- @Component ( { template : `<md-input [autoComplete ]="autoComplete"></md-input>` } )
633+ @Component ( { template : `<md-input [autocomplete ]="autoComplete"></md-input>` } )
634634class MdInputWithAutocomplete { }
635635
636- @Component ( { template : `<md-input autoComplete ></md-input>` } )
636+ @Component ( { template : `<md-input autocomplete ></md-input>` } )
637637class MdInputWithUnboundAutocomplete { }
638638
639- @Component ( { template : `<md-input autoComplete ="name"></md-input>` } )
639+ @Component ( { template : `<md-input autocomplete ="name"></md-input>` } )
640640class MdInputWithUnboundAutocompleteWithValue { }
641641
642- @Component ( { template : `<md-input [autoCorrect ]="autoCorrect"></md-input>` } )
642+ @Component ( { template : `<md-input [autocorrect ]="autoCorrect"></md-input>` } )
643643class MdInputWithAutocorrect { }
644644
645- @Component ( { template : `<md-input autoCorrect ></md-input>` } )
645+ @Component ( { template : `<md-input autocorrect ></md-input>` } )
646646class MdInputWithUnboundAutocorrect { }
647647
648- @Component ( { template : `<md-input [autoCapitalize ]="autoCapitalize"></md-input>` } )
648+ @Component ( { template : `<md-input [autocapitalize ]="autoCapitalize"></md-input>` } )
649649class MdInputWithAutocapitalize { }
650650
651- @Component ( { template : `<md-input autoCapitalize ></md-input>` } )
651+ @Component ( { template : `<md-input autocapitalize ></md-input>` } )
652652class MdInputWithUnboundAutocapitalize { }
653653
654- @Component ( { template : `<md-input [autoFocus ]="autoFocus"></md-input>` } )
654+ @Component ( { template : `<md-input [autofocus ]="autoFocus"></md-input>` } )
655655class MdInputWithAutofocus { }
656656
657- @Component ( { template : `<md-input autoFocus ></md-input>` } )
657+ @Component ( { template : `<md-input autofocus ></md-input>` } )
658658class MdInputWithUnboundAutofocus { }
659659
660- @Component ( { template : `<md-input [readOnly ]="readOnly"></md-input>` } )
660+ @Component ( { template : `<md-input [readonly ]="readOnly"></md-input>` } )
661661class MdInputWithReadonly { }
662662
663- @Component ( { template : `<md-input readOnly ></md-input>` } )
663+ @Component ( { template : `<md-input readonly ></md-input>` } )
664664class MdInputWithUnboundReadonly { }
665665
666- @Component ( { template : `<md-input [spellCheck ]="spellcheck"></md-input>` } )
666+ @Component ( { template : `<md-input [spellcheck ]="spellcheck"></md-input>` } )
667667class MdInputWithSpellcheck { }
668668
669- @Component ( { template : `<md-input spellCheck ></md-input>` } )
669+ @Component ( { template : `<md-input spellcheck ></md-input>` } )
670670class MdInputWithUnboundSpellcheck { }
671671
672672@Component ( { template : `<md-input [disabled]="disabled"></md-input>` } )
@@ -695,5 +695,5 @@ class MdInputWithMin { }
695695@Component ( { template : `<md-input [step]="step"></md-input>` } )
696696class MdInputWithStep { }
697697
698- @Component ( { template : `<md-input [tabIndex ]="tabIndex"></md-input>` } )
698+ @Component ( { template : `<md-input [tabindex ]="tabIndex"></md-input>` } )
699699class MdInputWithTabindex { }
0 commit comments