feat(HtmlParser): enforce no end tag for void elements
BREAKING CHANGE End tags used to be tolerated for void elements with no content. They are no more allowed so that we more closely follow the HTML5 spec.
This commit is contained in:
@ -85,11 +85,6 @@ export function main() {
|
||||
]);
|
||||
});
|
||||
|
||||
it('should tolerate end tags for void elements when they have no content', () => {
|
||||
expect(humanizeDom(parser.parse('<input></input>', 'TestComp')))
|
||||
.toEqual([[HtmlElementAst, 'input', 0]]);
|
||||
});
|
||||
|
||||
it('should support optional end tags', () => {
|
||||
expect(humanizeDom(parser.parse('<div><p>1<p>2</div>', 'TestComp')))
|
||||
.toEqual([
|
||||
@ -214,30 +209,11 @@ export function main() {
|
||||
expect(humanizeErrors(errors)).toEqual([['p', 'Unexpected closing tag "p"', '0:5']]);
|
||||
});
|
||||
|
||||
it('should report text content in void elements', () => {
|
||||
let errors = parser.parse('<input>content</input>', 'TestComp').errors;
|
||||
it('should report closing tag for void elements', () => {
|
||||
let errors = parser.parse('<input></input>', 'TestComp').errors;
|
||||
expect(errors.length).toEqual(1);
|
||||
expect(humanizeErrors(errors))
|
||||
.toEqual([
|
||||
[
|
||||
'input',
|
||||
'Void elements do not have end tags (they can not have content) "input"',
|
||||
'0:14'
|
||||
]
|
||||
]);
|
||||
});
|
||||
|
||||
it('should report html content in void elements', () => {
|
||||
let errors = parser.parse('<input><p></p></input>', 'TestComp').errors;
|
||||
expect(errors.length).toEqual(1);
|
||||
expect(humanizeErrors(errors))
|
||||
.toEqual([
|
||||
[
|
||||
'input',
|
||||
'Void elements do not have end tags (they can not have content) "input"',
|
||||
'0:14'
|
||||
]
|
||||
]);
|
||||
.toEqual([['input', 'Void elements do not have end tags "input"', '0:7']]);
|
||||
});
|
||||
|
||||
it('should also report lexer errors', () => {
|
||||
|
@ -241,7 +241,7 @@ export function main() {
|
||||
var template = normalizer.normalizeLoadedTemplate(
|
||||
dirType,
|
||||
new CompileTemplateMetadata({encapsulation: null, styles: [], styleUrls: []}),
|
||||
'<link href="b" rel="a"></link>', 'package:some/module/');
|
||||
'<link href="b" rel="a">', 'package:some/module/');
|
||||
expect(template.styleUrls).toEqual([]);
|
||||
}));
|
||||
|
||||
@ -250,8 +250,7 @@ export function main() {
|
||||
var template = normalizer.normalizeLoadedTemplate(
|
||||
dirType,
|
||||
new CompileTemplateMetadata({encapsulation: null, styles: [], styleUrls: []}),
|
||||
'<link href="http://some/external.css" rel="stylesheet"></link>',
|
||||
'package:some/module/');
|
||||
'<link href="http://some/external.css" rel="stylesheet">', 'package:some/module/');
|
||||
expect(template.styleUrls).toEqual([]);
|
||||
}));
|
||||
|
||||
|
@ -774,8 +774,7 @@ Property binding a not used by any directive on an embedded template ("[ERROR ->
|
||||
|
||||
it('should keep <link rel="stylesheet"> elements if they have an absolute non package: url',
|
||||
() => {
|
||||
expect(
|
||||
humanizeTplAst(parse('<link rel="stylesheet" href="http://someurl"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" href="http://someurl">a', [])))
|
||||
.toEqual([
|
||||
[ElementAst, 'link'],
|
||||
[AttrAst, 'rel', 'stylesheet'],
|
||||
@ -785,22 +784,21 @@ Property binding a not used by any directive on an embedded template ("[ERROR ->
|
||||
});
|
||||
|
||||
it('should keep <link rel="stylesheet"> elements if they have no uri', () => {
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet">a', [])))
|
||||
.toEqual([[ElementAst, 'link'], [AttrAst, 'rel', 'stylesheet'], [TextAst, 'a']]);
|
||||
expect(humanizeTplAst(parse('<link REL="stylesheet"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link REL="stylesheet">a', [])))
|
||||
.toEqual([[ElementAst, 'link'], [AttrAst, 'REL', 'stylesheet'], [TextAst, 'a']]);
|
||||
});
|
||||
|
||||
it('should ignore <link rel="stylesheet"> elements if they have a relative uri', () => {
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" href="./other.css"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" href="./other.css">a', [])))
|
||||
.toEqual([[TextAst, 'a']]);
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" HREF="./other.css"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" HREF="./other.css">a', [])))
|
||||
.toEqual([[TextAst, 'a']]);
|
||||
});
|
||||
|
||||
it('should ignore <link rel="stylesheet"> elements if they have a package: uri', () => {
|
||||
expect(humanizeTplAst(
|
||||
parse('<link rel="stylesheet" href="package:somePackage"></link>a', [])))
|
||||
expect(humanizeTplAst(parse('<link rel="stylesheet" href="package:somePackage">a', [])))
|
||||
.toEqual([[TextAst, 'a']]);
|
||||
});
|
||||
|
||||
@ -835,8 +833,7 @@ Property binding a not used by any directive on an embedded template ("[ERROR ->
|
||||
|
||||
it('should ignore <link rel="stylesheet"> elements inside of elements with ng-non-bindable',
|
||||
() => {
|
||||
expect(humanizeTplAst(
|
||||
parse('<div ng-non-bindable><link rel="stylesheet"></link>a</div>', [])))
|
||||
expect(humanizeTplAst(parse('<div ng-non-bindable><link rel="stylesheet">a</div>', [])))
|
||||
.toEqual([[ElementAst, 'div'], [AttrAst, 'ng-non-bindable', ''], [TextAst, 'a']]);
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user