update list of self-closing tags

Used the list from here
https://developer.mozilla.org/en-US/docs/Glossary/Empty_element
This commit is contained in:
Sam Larkin 2022-02-01 11:58:36 -07:00
parent fe84ef7707
commit 1f7c54478c
1 changed files with 2 additions and 2 deletions

4
dom.d
View File

@ -5582,9 +5582,9 @@ struct DomMutationEvent {
private immutable static string[] htmlSelfClosedElements = [
// html 4
"img", "hr", "input", "br", "col", "link", "meta",
"area","base","br","col","hr","img","input","link","meta","param",
// html 5
"source" ];
"embed","source","track","wbr" ];
private immutable static string[] htmlInlineElements = [
"span", "strong", "em", "b", "i", "a"