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

Side by Side Diff: chrome/test/data/session_history/form.html

Issue 10820043: Convert speech and session history browser_tests to run under content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/session_history/fragment.html » ('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 <title>form</title>
4 <script>
5 // Simulate the user clicking on the submit button.
6 function submitForm(name) {
7 var node = document.getElementById(name);
8 node.click();
9 }
10 // Simulate the user filling a form value.
11 function fillForm(name, value) {
12 var node = document.getElementById(name);
13 node.value = value;
14 }
15 </script>
16 </head>
17 <body>
18
19 <form method="post" action="/echotitle">
20
21 <p><input name="text" id="itext">
22 <p><select name="select" id="iselect">
23 <option selected>a
24 <option>b
25 <option>c
26 </select>
27 <p><input type="submit" value="Submit" id="isubmit">
28
29 </form>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/session_history/fragment.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698