Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5065)

Unified Diff: chrome/test/data/password/form_and_link.html

Issue 163843002: Fix check for user gesture on password autofill (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Correct comment Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/password/form_and_link.html
diff --git a/chrome/test/data/password/multi_frames.html b/chrome/test/data/password/form_and_link.html
similarity index 50%
copy from chrome/test/data/password/multi_frames.html
copy to chrome/test/data/password/form_and_link.html
index 02bb48dcf9b2cf78ba9c036992a1615b2264d256..bf31b44a824637700bf79ca94e6bf90d4b735685 100644
--- a/chrome/test/data/password/multi_frames.html
+++ b/chrome/test/data/password/form_and_link.html
@@ -1,16 +1,10 @@
<html>
<body>
-
-<iframe src="password_form.html" id="first_frame" name="first_frame">
-</iframe>
-<iframe src="password_form.html" id="second_frame" name="second_frame">
-</iframe>
-
-<form method="POST" action="done.html" onsubmit="return false;" id="testform">
+<form method="POST" action="done.html" id="testform">
<input type="text" id="username_field" name="username_field">
<input type="password" id="password_field" name="password_field">
<input type="submit" id="input_submit_button" name="input_submit_button">
</form>
-
+<a href="done.html" id="testlink" target="_blank">Link</a>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698