Skip to content

Commit

Permalink
self closing divs ar not a W3C valid markup: Self-closing syntax (/>)…
Browse files Browse the repository at this point in the history
… used on a non-void HTML element. Ignoring the slash and treating as a start tag. (#8738)
  • Loading branch information
HermesSbicego-Laser committed Nov 17, 2023
1 parent 4e73190 commit 9644ced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
}

@* Don't render the audio tag as thumbnails or the whole file is downloaded automatically by browsers *@
<div class="media-thumbnail media-thumbnail-@contentItem.ContentType.HtmlClassify() mime-type-@media.MimeType.HtmlClassify()" />
<div class="media-thumbnail media-thumbnail-@contentItem.ContentType.HtmlClassify() mime-type-@media.MimeType.HtmlClassify()"></div>
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
}

@* Don't render the video tag as thumbnails or the whole file is downloaded automatically by browsers *@
<div class="media-thumbnail media-thumbnail-@contentItem.ContentType.HtmlClassify() mime-type-@media.MimeType.HtmlClassify()" />
<div class="media-thumbnail media-thumbnail-@contentItem.ContentType.HtmlClassify() mime-type-@media.MimeType.HtmlClassify()"></div>

0 comments on commit 9644ced

Please sign in to comment.