1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html> <html> <head> <meta charset=windows-1251> <title>Page with non-default charset</title> <script> function run() { document.forms[0].submit(); } </script> </head> <body onload="run();"> <form method=post action="http://example.org/tests/dom/html/test/file_bug871161-2.html"></form> </body> </html>