Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/perl -wT | |
| 2 use strict; | |
| 3 use CGI; | |
| 4 | |
| 5 my $cgi = new CGI; | |
| 6 | |
| 7 print "Content-Type: text/html; charset=UTF-8\n\n"; | |
| 8 | |
| 9 print "<!DOCTYPE html>\n"; | |
| 10 print "<html>\n"; | |
| 11 print "<body>\n"; | |
| 12 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"; | |
| 14 print "<script>if (window.testRunner) testRunner.notifyDone();</script>\n"; | |
| 15 print "</body>\n"; | |
| 16 print "</html>\n"; | |
| OLD | NEW |