We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 393f86a commit 62ce217Copy full SHA for 62ce217
html5lib/tests/test_sanitizer.py
@@ -61,7 +61,7 @@ def test_sanitizer():
61
for ns, tag_name in sanitizer.allowed_elements:
62
if ns != constants.namespaces["html"]:
63
continue
64
- if tag_name in ['caption', 'col', 'colgroup', 'optgroup', 'option', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr']:
+ if tag_name in ['caption', 'col', 'colgroup', 'optgroup', 'option', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', 'select']:
65
continue # TODO
66
if tag_name == 'image':
67
yield (runSanitizerTest, "test_should_allow_%s_tag" % tag_name,
0 commit comments