diff options
| author | Misko Hevery | 2010-04-22 21:04:20 -0700 |
|---|---|---|
| committer | Misko Hevery | 2010-04-22 21:04:20 -0700 |
| commit | 7ef5e055afec5ad7f279bcc4bd70b9f069d87a95 (patch) | |
| tree | 089c7352415b7e762f3fa48b501174f8631a9a02 /test/markupSpec.js | |
| parent | fe434307d15d697a5ffade51bad068f6443965b2 (diff) | |
| download | angular.js-7ef5e055afec5ad7f279bcc4bd70b9f069d87a95.tar.bz2 | |
fix CI Build
Diffstat (limited to 'test/markupSpec.js')
| -rw-r--r-- | test/markupSpec.js | 10 |
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>'); - } - }); - }); |
