| OLD | NEW |
| 1 #!/usr/bin/perl -wT | 1 #!/usr/bin/perl -wT |
| 2 use strict; | 2 use strict; |
| 3 use CGI; | 3 use CGI; |
| 4 | 4 |
| 5 my $cgi = new CGI; | 5 my $cgi = new CGI; |
| 6 my $action = $cgi->param('q'); |
| 7 if ($cgi->param('add-token')) { |
| 8 $action = $action . "&tok=12345678"; |
| 9 } |
| 6 | 10 |
| 7 print "Content-Type: text/html; charset=UTF-8\n\n"; | 11 print "Content-Type: text/html; charset=UTF-8\n\n"; |
| 8 | 12 |
| 9 print "<!DOCTYPE html>\n"; | 13 print "<!DOCTYPE html>\n"; |
| 10 print "<html>\n"; | 14 print "<html>\n"; |
| 11 print "<body>\n"; | 15 print "<body>\n"; |
| 12 print "<p>This is an iframe with a injected form</p>\n"; | 16 print "<p>This is an iframe with a injected form</p>\n"; |
| 13 print "<form method=\"post\" id=\"login\" action=\"".$cgi->param('q')."\"></form
>\n"; | 17 print "<form method=\"post\" id=\"login\" action=\"".$action."\"></form>\n"; |
| 14 print "<script>if (window.testRunner) testRunner.notifyDone();</script>\n"; | 18 print "<script>if (window.testRunner) testRunner.notifyDone();</script>\n"; |
| 15 print "</body>\n"; | 19 print "</body>\n"; |
| 16 print "</html>\n"; | 20 print "</html>\n"; |
| OLD | NEW |