mirror of https://github.com/adamdruppe/arsd.git
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:
parent
fe84ef7707
commit
1f7c54478c
4
dom.d
4
dom.d
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue