mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Avoided direct styles in admin templates.
Direct styles might be forbidden by Content Security Policies.
This commit is contained in:
parent
4cd77f97a2
commit
187482d743
4 changed files with 4 additions and 4 deletions
|
@ -1170,7 +1170,7 @@ class AdminCustomTemplateTests(AdminViewBasicTestCase):
|
|||
# When a site has multiple passwords in the browser's password manager,
|
||||
# a browser pop up asks which user the new password is for. To prevent
|
||||
# this, the username is added to the change password form.
|
||||
self.assertContains(response, '<input type="text" name="username" value="super" style="display: none">')
|
||||
self.assertContains(response, '<input type="text" name="username" value="super" class="hidden">')
|
||||
|
||||
def test_extended_bodyclass_template_index(self):
|
||||
"""
|
||||
|
|
|
@ -56,7 +56,7 @@ class AuthTemplateTests(TestCase):
|
|||
# browser's password managers.
|
||||
self.assertContains(
|
||||
response,
|
||||
'<input style="display: none;" autocomplete="username" value="jsmith">',
|
||||
'<input class="hidden" autocomplete="username" value="jsmith">',
|
||||
)
|
||||
|
||||
def test_PasswordResetCompleteView(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue