@@ -62,7 +62,7 @@ describe('MdInputContainer', function () {
6262
6363 let inputContainer = fixture . debugElement . query ( By . directive ( MdInputContainer ) )
6464 . componentInstance as MdInputContainer ;
65- expect ( inputContainer . floatingPlaceholder ) . toBe ( 'auto' ,
65+ expect ( inputContainer . floatPlaceholder ) . toBe ( 'auto' ,
6666 'Expected MdInputContainer to set floatingLabel to auto by default.' ) ;
6767 } ) ;
6868
@@ -479,7 +479,7 @@ describe('MdInputContainer', function () {
479479 expect ( ariaValue ) . toBe ( `${ hintLabel . getAttribute ( 'id' ) } ${ endLabel . getAttribute ( 'id' ) } ` ) ;
480480 } ) ;
481481
482- it ( 'should float when floatingPlaceholder is set to default and text is entered' , ( ) => {
482+ it ( 'should float when floatPlaceholder is set to default and text is entered' , ( ) => {
483483 let fixture = TestBed . createComponent ( MdInputContainerWithDynamicPlaceholder ) ;
484484 fixture . detectChanges ( ) ;
485485
@@ -505,7 +505,7 @@ describe('MdInputContainer', function () {
505505 expect ( labelEl . classList ) . toContain ( 'md-float' ) ;
506506 } ) ;
507507
508- it ( 'should always float the placeholder when floatingPlaceholder is set to true' , ( ) => {
508+ it ( 'should always float the placeholder when floatPlaceholder is set to true' , ( ) => {
509509 let fixture = TestBed . createComponent ( MdInputContainerWithDynamicPlaceholder ) ;
510510 fixture . detectChanges ( ) ;
511511
@@ -528,7 +528,7 @@ describe('MdInputContainer', function () {
528528 } ) ;
529529
530530
531- it ( 'should never float the placeholder when floatingPlaceholder is set to false' , ( ) => {
531+ it ( 'should never float the placeholder when floatPlaceholder is set to false' , ( ) => {
532532 let fixture = TestBed . createComponent ( MdInputContainerWithDynamicPlaceholder ) ;
533533
534534 fixture . componentInstance . shouldFloat = 'never' ;
@@ -741,7 +741,7 @@ class MdInputContainerWithValueBinding {
741741
742742@Component ( {
743743 template : `
744- <md-input-container floatingPlaceholder ="never">
744+ <md-input-container floatPlaceholder ="never">
745745 <input mdInput placeholder="Label">
746746 </md-input-container>
747747 `
@@ -750,8 +750,8 @@ class MdInputContainerWithStaticPlaceholder {}
750750
751751@Component ( {
752752 template : `
753- <md-input-container [floatingPlaceholder ]="shouldFloat">
754- <input md-input placeholder="Label">
753+ <md-input-container [floatPlaceholder ]="shouldFloat">
754+ <input mdInput placeholder="Label">
755755 </md-input-container>`
756756} )
757757class MdInputContainerWithDynamicPlaceholder {
0 commit comments