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

Side by Side Diff: chrome/test/data/session_history/post.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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>post</title>
4 <script>
5 // stolen from darin's page cycler
6 var options = location.search.substring(1).split('&');
7
8 function getopt(name) {
9 var r = new RegExp("^" + name + "=");
10 for (i = 0; i < options.length; ++i) {
11 if (options[i].match(r)) {
12 return options[i].substring(name.length + 1);
13 }
14 }
15 return null;
16 }
17
18 function checkParams() {
19 document.title = "post:" + getopt("text") + "," + getopt("select");
20 }
21 checkParams();
22 </script>
23 </head>
24
25 <body>
26 Form submission accepted. Thanks for playing.
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/session_history/no-title.html ('k') | chrome/test/data/session_history/record_length.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698