aboutsummaryrefslogtreecommitdiffstats
path: root/test/markupSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/markupSpec.js')
-rw-r--r--test/markupSpec.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/markupSpec.js b/test/markupSpec.js
index b2d04fcd..8358b673 100644
--- a/test/markupSpec.js
+++ b/test/markupSpec.js
@@ -47,16 +47,6 @@ describe("markups", function(){
expect(sortedHtml(element).replace(' selected="true"', '')).toEqual('<select name="x"><option value="a">a</option></select>');
});
- it('should process all bindings when we have leading space', function(){
- var e = jqLite('<a> {{a}}<br/>{{b}}</a>');
- if (sortedHtml(e).indexOf('<a>{{') != 0) {
- // can only run this test if browser respects leading spaces
- compile(e);
- var space = msie ? '<span>' + NBSP + '</span>': ' ';
- expect(sortedHtml(scope.$element)).toEqual('<a>' + space + '<span ng-bind="a"></span><br></br><span ng-bind="b"></span></a>');
- }
- });
-
});