Index: chrome/test/data/devtools/dispatch_key_event_shows_auto_fill.html |
diff --git a/chrome/test/data/devtools/dispatch_key_event_shows_auto_fill.html b/chrome/test/data/devtools/dispatch_key_event_shows_auto_fill.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e418575fb1f4584a7b30597418db9086492a5020 |
--- /dev/null |
+++ b/chrome/test/data/devtools/dispatch_key_event_shows_auto_fill.html |
@@ -0,0 +1,22 @@ |
+<html> |
+<head> |
+<script> |
+function run() |
+{ |
+ if (window.location.toString().endsWith("?name=Abbf")) { |
+ document.getElementById("name").value = ""; |
+ document.getElementById("name").focus(); |
+ console.log("ready"); |
+ return; |
+ } |
+ document.getElementById("submit").click(); |
+} |
+</script> |
+</head> |
+<body onload="run()"> |
+ <form action="?" onsubmit="this.action += window.location.hash"> |
+ <input type="text" id="name" name="name" value="Abbf" /> |
+ <input type="submit" id="submit" value="submit" /> |
+ </form> |
+</body> |
+</html> |