Add QA test page for Bug 786276.

This commit is contained in:
Bianca Danforth 2020-10-14 16:21:57 -07:00
Родитель 93249ab0e5
Коммит 89c4588f46
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 2C96DD7DB2A2D72D
2 изменённых файлов: 23 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,7 @@
<h2>Password Manager</h2>
<ul>
<li><a href="password_manager/login_and_pw_change_forms.html">Login and Password Change Forms</a></li>
<li><a href="password_manager/form_with_iframe.html">Login Form with Iframe Loading a Cross-Origin Login Form</a></li>
</ul>
</body>
</html>

Просмотреть файл

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login Form with Iframe Loading a Cross-Origin Login Form</title>
</head>
<body>
<form action="success.html" method="POST">
<h2>Login form:</h2>
<input name="u" placeholder=username />
<input name="p" type=password placeholder=current-password autocomplete=current-password />
<input type=submit value="Log In"/>
</form>
<!-- The src value can be edited in DevTools via the Console by selecting the <iframe> in the Inspector,
and then entering e.g. `$0.src = "https://example.com"` (without the backticks). Note that many
websites block being loaded in an iframe by using the X-Frame-Options header. -->
<iframe src="https://bugs.mattn.ca/pwmgr/login_and_change_form.html"></iframe>
</body>
</html>