@@ -269,7 +269,7 @@ describe('MdInput', function () {
269
269
expect ( el ) . not . toBeNull ( ) ;
270
270
expect ( el . getAttribute ( 'autocomplete' ) ) . toBeNull ( ) ;
271
271
272
- input . autoComplete = 'on' ;
272
+ input . autocomplete = 'on' ;
273
273
fixture . detectChanges ( ) ;
274
274
expect ( el . getAttribute ( 'autocomplete' ) ) . toEqual ( 'on' ) ;
275
275
} ) ;
@@ -284,7 +284,7 @@ describe('MdInput', function () {
284
284
expect ( el ) . not . toBeNull ( ) ;
285
285
expect ( el . getAttribute ( 'autocorrect' ) ) . toBeNull ( ) ;
286
286
287
- input . autoCorrect = 'on' ;
287
+ input . autocorrect = 'on' ;
288
288
fixture . detectChanges ( ) ;
289
289
expect ( el . getAttribute ( 'autocorrect' ) ) . toEqual ( 'on' ) ;
290
290
} ) ;
@@ -299,7 +299,7 @@ describe('MdInput', function () {
299
299
expect ( el ) . not . toBeNull ( ) ;
300
300
expect ( el . getAttribute ( 'autocapitalize' ) ) . toBeNull ( ) ;
301
301
302
- input . autoCapitalize = 'on' ;
302
+ input . autocapitalize = 'on' ;
303
303
fixture . detectChanges ( ) ;
304
304
expect ( el . getAttribute ( 'autocapitalize' ) ) . toEqual ( 'on' ) ;
305
305
} ) ;
@@ -334,7 +334,7 @@ describe('MdInput', function () {
334
334
expect ( el ) . not . toBeNull ( ) ;
335
335
expect ( el . getAttribute ( 'autofocus' ) ) . toBeNull ( ) ;
336
336
337
- input . autoFocus = true ;
337
+ input . autofocus = true ;
338
338
fixture . detectChanges ( ) ;
339
339
expect ( el . getAttribute ( 'autofocus' ) ) . toEqual ( '' ) ;
340
340
} ) ;
@@ -442,7 +442,7 @@ describe('MdInput', function () {
442
442
expect ( el ) . not . toBeNull ( ) ;
443
443
expect ( el . getAttribute ( 'readonly' ) ) . toBeNull ( ) ;
444
444
445
- input . readOnly = true ;
445
+ input . readonly = true ;
446
446
fixture . detectChanges ( ) ;
447
447
expect ( el . getAttribute ( 'readonly' ) ) . toEqual ( '' ) ;
448
448
} ) ;
@@ -492,7 +492,7 @@ describe('MdInput', function () {
492
492
expect ( el ) . not . toBeNull ( ) ;
493
493
expect ( el . getAttribute ( 'spellcheck' ) ) . toEqual ( 'false' ) ;
494
494
495
- input . spellCheck = true ;
495
+ input . spellcheck = true ;
496
496
fixture . detectChanges ( ) ;
497
497
expect ( el . getAttribute ( 'spellcheck' ) ) . toEqual ( 'true' ) ;
498
498
} ) ;
@@ -532,7 +532,7 @@ describe('MdInput', function () {
532
532
expect ( el ) . not . toBeNull ( ) ;
533
533
expect ( el . getAttribute ( 'tabindex' ) ) . toEqual ( null ) ;
534
534
535
- input . tabIndex = 1 ;
535
+ input . tabindex = 1 ;
536
536
fixture . detectChanges ( ) ;
537
537
expect ( el . getAttribute ( 'tabindex' ) ) . toEqual ( '1' ) ;
538
538
} ) ;
@@ -630,43 +630,43 @@ class MdInputWithBlurAndFocusEvents {
630
630
@Component ( { template : `<md-input name="some-name"></md-input>` } )
631
631
class MdInputWithNameTestController { }
632
632
633
- @Component ( { template : `<md-input [autoComplete ]="autoComplete"></md-input>` } )
633
+ @Component ( { template : `<md-input [autocomplete ]="autoComplete"></md-input>` } )
634
634
class MdInputWithAutocomplete { }
635
635
636
- @Component ( { template : `<md-input autoComplete ></md-input>` } )
636
+ @Component ( { template : `<md-input autocomplete ></md-input>` } )
637
637
class MdInputWithUnboundAutocomplete { }
638
638
639
- @Component ( { template : `<md-input autoComplete ="name"></md-input>` } )
639
+ @Component ( { template : `<md-input autocomplete ="name"></md-input>` } )
640
640
class MdInputWithUnboundAutocompleteWithValue { }
641
641
642
- @Component ( { template : `<md-input [autoCorrect ]="autoCorrect"></md-input>` } )
642
+ @Component ( { template : `<md-input [autocorrect ]="autoCorrect"></md-input>` } )
643
643
class MdInputWithAutocorrect { }
644
644
645
- @Component ( { template : `<md-input autoCorrect ></md-input>` } )
645
+ @Component ( { template : `<md-input autocorrect ></md-input>` } )
646
646
class MdInputWithUnboundAutocorrect { }
647
647
648
- @Component ( { template : `<md-input [autoCapitalize ]="autoCapitalize"></md-input>` } )
648
+ @Component ( { template : `<md-input [autocapitalize ]="autoCapitalize"></md-input>` } )
649
649
class MdInputWithAutocapitalize { }
650
650
651
- @Component ( { template : `<md-input autoCapitalize ></md-input>` } )
651
+ @Component ( { template : `<md-input autocapitalize ></md-input>` } )
652
652
class MdInputWithUnboundAutocapitalize { }
653
653
654
- @Component ( { template : `<md-input [autoFocus ]="autoFocus"></md-input>` } )
654
+ @Component ( { template : `<md-input [autofocus ]="autoFocus"></md-input>` } )
655
655
class MdInputWithAutofocus { }
656
656
657
- @Component ( { template : `<md-input autoFocus ></md-input>` } )
657
+ @Component ( { template : `<md-input autofocus ></md-input>` } )
658
658
class MdInputWithUnboundAutofocus { }
659
659
660
- @Component ( { template : `<md-input [readOnly ]="readOnly"></md-input>` } )
660
+ @Component ( { template : `<md-input [readonly ]="readOnly"></md-input>` } )
661
661
class MdInputWithReadonly { }
662
662
663
- @Component ( { template : `<md-input readOnly ></md-input>` } )
663
+ @Component ( { template : `<md-input readonly ></md-input>` } )
664
664
class MdInputWithUnboundReadonly { }
665
665
666
- @Component ( { template : `<md-input [spellCheck ]="spellcheck"></md-input>` } )
666
+ @Component ( { template : `<md-input [spellcheck ]="spellcheck"></md-input>` } )
667
667
class MdInputWithSpellcheck { }
668
668
669
- @Component ( { template : `<md-input spellCheck ></md-input>` } )
669
+ @Component ( { template : `<md-input spellcheck ></md-input>` } )
670
670
class MdInputWithUnboundSpellcheck { }
671
671
672
672
@Component ( { template : `<md-input [disabled]="disabled"></md-input>` } )
@@ -695,5 +695,5 @@ class MdInputWithMin { }
695
695
@Component ( { template : `<md-input [step]="step"></md-input>` } )
696
696
class MdInputWithStep { }
697
697
698
- @Component ( { template : `<md-input [tabIndex ]="tabIndex"></md-input>` } )
698
+ @Component ( { template : `<md-input [tabindex ]="tabIndex"></md-input>` } )
699
699
class MdInputWithTabindex { }
0 commit comments