@@ -12285,15 +12285,15 @@ describe('$compile', function() {
12285
12285
expect(element.prop('test6')).toBe('Misko');
12286
12286
}));
12287
12287
12288
- it('should work indipendently of attributes with the same name', inject(function($rootScope, $compile) {
12288
+ it('should work independently of attributes with the same name', inject(function($rootScope, $compile) {
12289
12289
element = $compile('<span ng-prop-asdf="asdf" asdf="foo" />')($rootScope);
12290
12290
$rootScope.asdf = 123;
12291
12291
$rootScope.$digest();
12292
12292
expect(element.prop('asdf')).toBe(123);
12293
12293
expect(element.attr('asdf')).toBe('foo');
12294
12294
}));
12295
12295
12296
- it('should work indipendently of (ng-)attributes with the same name', inject(function($rootScope, $compile) {
12296
+ it('should work independently of (ng-)attributes with the same name', inject(function($rootScope, $compile) {
12297
12297
element = $compile('<span ng-prop-asdf="asdf" ng-attr-asdf="foo" />')($rootScope);
12298
12298
$rootScope.asdf = 123;
12299
12299
$rootScope.$digest();
@@ -12349,7 +12349,7 @@ describe('$compile', function() {
12349
12349
});
12350
12350
});
12351
12351
12352
- it('should disallow property binding on onclick', inject(function($compile, $rootScope) {
12352
+ it('should disallow property binding to onclick', inject(function($compile, $rootScope) {
12353
12353
// All event prop bindings are disallowed.
12354
12354
$rootScope.onClickJs = function() {};
12355
12355
expect(function() {
@@ -12364,7 +12364,7 @@ describe('$compile', function() {
12364
12364
'Please use the ng- versions (such as ng-click or ng-on-click instead of ng-prop-onclick) instead.');
12365
12365
}));
12366
12366
12367
- it('should process property binding in pre-linking phase at priority 100 ', function() {
12367
+ it('should process property bindings at $watch time ', function() {
12368
12368
module(function() {
12369
12369
directive('propLog', function(log) {
12370
12370
return {
0 commit comments