diff --git a/tests.py b/tests.py index 7f4fb1449..5f0251a5e 100644 --- a/tests.py +++ b/tests.py @@ -4107,6 +4107,10 @@ def _test_danger_markup(): '.innerHTML = "def";
' assert dangerous_markup(content, allow_local_network_access) + content = 'This html contains more than you expected... ' + \ + '
' + assert dangerous_markup(content, allow_local_network_access) + content = 'This is a valid-looking message. But wait... ' + \ '
' assert dangerous_markup(content, allow_local_network_access)