mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #30470 -- Added assertHTMLEqual() support for all self closing tags.
Support for the following tags was added: area, embed, param, track, and wbr. The full list of self closing tags is documented at: https://html.spec.whatwg.org/#void-elements
This commit is contained in:
parent
b7a33ee4f0
commit
7c3732a1b4
2 changed files with 13 additions and 8 deletions
|
@ -537,10 +537,12 @@ class HTMLEqualTests(SimpleTestCase):
|
|||
self.assertEqual(dom.children[0], "<p>foo</p> '</scr'+'ipt>' <span>bar</span>")
|
||||
|
||||
def test_self_closing_tags(self):
|
||||
self_closing_tags = (
|
||||
'br', 'hr', 'input', 'img', 'meta', 'spacer', 'link', 'frame',
|
||||
'base', 'col',
|
||||
)
|
||||
self_closing_tags = [
|
||||
'area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'link',
|
||||
'meta', 'param', 'source', 'track', 'wbr',
|
||||
# Deprecated tags
|
||||
'frame', 'spacer',
|
||||
]
|
||||
for tag in self_closing_tags:
|
||||
with self.subTest(tag):
|
||||
dom = parse_html('<p>Hello <%s> world</p>' % tag)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue