Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit e415e91

Browse files
committedDec 31, 2013
test(compileSpec): fix broken build on FF
FF 26.0 now throws: "TypeError: NodeList doesn't have an indexed property setter." when we try to assign to `childNodes[1]`, since this test still works properly on Chrome and the issue being tested is not a cross-browser issues, I'm just making the patchability check more robust instead of trying to figure out how to make this test fully pass on FF.
1 parent 07084e1 commit e415e91

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

‎test/ng/compileSpec.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,14 @@ describe('$compile', function() {
202202
if (msie < 9) return;
203203

204204
element = jqLite('<div>{{1+2}}</div>');
205-
element[0].childNodes[1] = {nodeType: 3, nodeName: 'OBJECT', textContent: 'fake node'};
206205

207-
if (!element[0].childNodes[1]) return; //browser doesn't support this kind of mocking
206+
try {
207+
element[0].childNodes[1] = {nodeType: 3, nodeName: 'OBJECT', textContent: 'fake node'};
208+
} catch(e) {
209+
} finally {
210+
if (!element[0].childNodes[1]) return; //browser doesn't support this kind of mocking
211+
}
212+
208213
expect(element[0].childNodes[1].textContent).toBe('fake node');
209214

210215
$compile(element)($rootScope);
@@ -4243,7 +4248,7 @@ describe('$compile', function() {
42434248
expect(element.attr('test2')).toBe('Misko');
42444249
expect(element.attr('test3')).toBe('Misko');
42454250
}));
4246-
4251+
42474252
it('should work with the "href" attribute', inject(function($compile, $rootScope) {
42484253
$rootScope.value = 'test';
42494254
element = $compile('<a ng-attr-href="test/{{value}}"></a>')($rootScope);

0 commit comments

Comments
 (0)
This repository has been archived.