@@ -372,27 +372,28 @@ describe('$compile', function() {
372
372
expect ( $document . scope ( ) ) . toBe ( $rootScope ) ;
373
373
} ) ) ;
374
374
375
- it ( 'should wrap root text nodes in spans' , inject ( function ( $compile , $rootScope ) {
376
- element = jqLite ( '<div>A<a>B</a>C</div>' ) ;
377
- var text = element . contents ( ) ;
378
- expect ( text [ 0 ] . nodeName ) . toEqual ( '#text' ) ;
379
- text = $compile ( text ) ( $rootScope ) ;
380
- expect ( text [ 0 ] . nodeName ) . toEqual ( 'SPAN' ) ;
381
- expect ( element . find ( 'span' ) . text ( ) ) . toEqual ( 'A<a>B</a>C' ) ;
382
- } ) ) ;
383
-
384
375
385
- it ( 'should not wrap root whitespace text nodes in spans' , function ( ) {
376
+ it ( 'should not wrap root text nodes in spans' , function ( ) {
386
377
element = jqLite (
387
- '<div> <div>A</div>\n ' + // The spaces and newlines here should not get wrapped
388
- '<div>B</div>C\t\n ' + // The "C", tabs and spaces here will be wrapped
378
+ '<div> <div>A</div>\n ' +
379
+ '<div>B</div>C\t\n ' +
389
380
'</div>' ) ;
390
381
$compile ( element . contents ( ) ) ( $rootScope ) ;
391
382
var spans = element . find ( 'span' ) ;
392
- expect ( spans . length ) . toEqual ( 1 ) ;
393
- expect ( spans . text ( ) . indexOf ( 'C' ) ) . toEqual ( 0 ) ;
383
+ expect ( spans . length ) . toEqual ( 0 ) ;
394
384
} ) ;
395
385
386
+
387
+ it ( 'should be able to compile text nodes at the root' , inject ( function ( $rootScope ) {
388
+ element = jqLite ( '<div>Name: {{name}}<br />\nColor: {{color}}</div>' ) ;
389
+ $rootScope . name = 'Lucas' ;
390
+ $rootScope . color = 'blue' ;
391
+ $compile ( element . contents ( ) ) ( $rootScope ) ;
392
+ $rootScope . $digest ( ) ;
393
+ expect ( element . text ( ) ) . toEqual ( 'Name: Lucas\nColor: blue' ) ;
394
+ } ) ) ;
395
+
396
+
396
397
it ( 'should not leak memory when there are top level empty text nodes' , function ( ) {
397
398
// We compile the contents of element (i.e. not element itself)
398
399
// Then delete these contents and check the cache has been reset to zero
@@ -6595,8 +6596,8 @@ describe('$compile', function() {
6595
6596
$rootScope . x = 'root' ;
6596
6597
$rootScope . $apply ( ) ;
6597
6598
expect ( element . text ( ) ) . toEqual ( 'W:iso-1-2;T:root-2-3;' ) ;
6598
- expect ( jqLite ( element . find ( 'span' ) [ 0 ] ) . text ( ) ) . toEqual ( 'T:root-2-3' ) ;
6599
- expect ( jqLite ( element . find ( 'span' ) [ 1 ] ) . text ( ) ) . toEqual ( ';' ) ;
6599
+ expect ( jqLite ( jqLite ( element . find ( 'li' ) [ 1 ] ) . contents ( ) [ 0 ] ) . text ( ) ) . toEqual ( 'T:root-2-3' ) ;
6600
+ expect ( jqLite ( element . find ( 'span' ) [ 0 ] ) . text ( ) ) . toEqual ( ';' ) ;
6600
6601
} ) ;
6601
6602
} ) ;
6602
6603
@@ -6634,6 +6635,37 @@ describe('$compile', function() {
6634
6635
} ) ;
6635
6636
6636
6637
6638
+ it ( 'should not merge text elements from transcluded content' , function ( ) {
6639
+ module ( function ( ) {
6640
+ directive ( 'foo' , valueFn ( {
6641
+ transclude : 'content' ,
6642
+ template : '<div>This is before {{before}}. </div>' ,
6643
+ link : function ( scope , element , attr , ctrls , $transclude ) {
6644
+ var futureParent = element . children ( ) . eq ( 0 ) ;
6645
+ $transclude ( function ( clone ) {
6646
+ futureParent . append ( clone ) ;
6647
+ } , futureParent ) ;
6648
+ } ,
6649
+ scope : true
6650
+ } ) ) ;
6651
+ } ) ;
6652
+ inject ( function ( $rootScope , $compile ) {
6653
+ element = $compile ( '<div><div foo>This is after {{after}}</div></div>' ) ( $rootScope ) ;
6654
+ $rootScope . before = "BEFORE" ;
6655
+ $rootScope . after = "AFTER" ;
6656
+ $rootScope . $apply ( ) ;
6657
+ expect ( element . text ( ) ) . toEqual ( 'This is before BEFORE. This is after AFTER' ) ;
6658
+
6659
+ $rootScope . before = "Not-Before" ;
6660
+ $rootScope . after = "AfTeR" ;
6661
+ $rootScope . $$childHead . before = "BeFoRe" ;
6662
+ $rootScope . $$childHead . after = "Not-After" ;
6663
+ $rootScope . $apply ( ) ;
6664
+ expect ( element . text ( ) ) . toEqual ( 'This is before BeFoRe. This is after AfTeR' ) ;
6665
+ } ) ;
6666
+ } ) ;
6667
+
6668
+
6637
6669
it ( 'should only allow one content transclusion per element' , function ( ) {
6638
6670
module ( function ( ) {
6639
6671
directive ( 'first' , valueFn ( {
@@ -6932,11 +6964,11 @@ describe('$compile', function() {
6932
6964
transclude : true ,
6933
6965
replace : true ,
6934
6966
scope : true ,
6935
- template : '<div><span>I:{{$$transcluded}}</span><div ng-transclude></div ></div>'
6967
+ template : '<div><span>I:{{$$transcluded}}</span><span ng-transclude></span ></div>'
6936
6968
} ;
6937
6969
} ) ;
6938
6970
} ) ;
6939
- inject ( function ( log , $rootScope , $compile ) {
6971
+ inject ( function ( $rootScope , $compile ) {
6940
6972
element = $compile ( '<div><div trans>T:{{$$transcluded}}</div></div>' ) ( $rootScope ) ;
6941
6973
$rootScope . $apply ( ) ;
6942
6974
expect ( jqLite ( element . find ( 'span' ) [ 0 ] ) . text ( ) ) . toEqual ( 'I:' ) ;
@@ -6955,10 +6987,10 @@ describe('$compile', function() {
6955
6987
} ;
6956
6988
} ) ;
6957
6989
} ) ;
6958
- inject ( function ( log , $rootScope , $compile ) {
6990
+ inject ( function ( $rootScope , $compile ) {
6959
6991
element = $compile ( '<div trans>unicorn!</div>' ) ( $rootScope ) ;
6960
6992
$rootScope . $apply ( ) ;
6961
- expect ( sortedHtml ( element . html ( ) ) ) . toEqual ( '<div ng-transclude=""><span> unicorn!</span> </div>' ) ;
6993
+ expect ( sortedHtml ( element . html ( ) ) ) . toEqual ( '<div ng-transclude="">unicorn!</div>' ) ;
6962
6994
} ) ;
6963
6995
} ) ;
6964
6996
0 commit comments