blob: 16015f0c4e5300892230406f7be5ee483287686d (
plain)
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>
|