We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbfa7a8 commit 967b522Copy full SHA for 967b522
html5lib/constants.py
@@ -572,7 +572,8 @@
572
"col",
573
"input",
574
"source",
575
- "track"
+ "track",
576
+ "wbr",
577
])
578
579
cdataElements = frozenset(['title', 'textarea'])
html5lib/tests/test_sanitizer.py
@@ -61,7 +61,7 @@ def test_data_uri_disallowed_type():
61
62
def test_wbr_allowed():
63
sanitized = sanitize_html('<wbr>')
64
- expected = '<wbr>'
+ expected = '<wbr/>'
65
assert expected == sanitized
66
67
0 commit comments