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

Side by Side Diff: chrome/test/data/devtools/dispatch_key_event_shows_auto_fill.html

Issue 2656903005: ChromeDriver: Handle key events properly on Mac (Closed)
Patch Set: fixes Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/devtools/devtools_sanity_browsertest.cc ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function run()
5 {
6 if (window.location.toString().endsWith("?name=Abbf")) {
7 document.getElementById("name").value = "";
8 document.getElementById("name").focus();
9 console.log("ready");
10 return;
11 }
12 document.getElementById("submit").click();
13 }
14 </script>
15 </head>
16 <body onload="run()">
17 <form action="?" onsubmit="this.action += window.location.hash">
18 <input type="text" id="name" name="name" value="Abbf" />
19 <input type="submit" id="submit" value="submit" />
20 </form>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_sanity_browsertest.cc ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698