feat(TemplateParser): allow template elements regardless the namespace

Closes #5703
This commit is contained in:
Victor Berchet
2015-12-08 09:01:15 -08:00
parent eb0ea931d0
commit 1f35048d54
2 changed files with 12 additions and 1 deletions

View File

@ -500,6 +500,15 @@ There is no directive with "exportAs" set to "dirA" ("<div [ERROR ->]#a="dirA"><
expect(humanizeTplAst(parse('<TEMPLATE></TEMPLATE>', [])))
.toEqual([[EmbeddedTemplateAst]]);
});
it('should create embedded templates for <template> elements regardless the namespace',
() => {
expect(humanizeTplAst(parse('<svg><template></template></svg>', [])))
.toEqual([
[ElementAst, '@svg:svg'],
[EmbeddedTemplateAst],
]);
});
});
describe('inline templates', () => {