summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/mailto/post-text-plain-with-accept-charset.html
blob: 63c064b180395f21e0f8fbe1c798d09d6e298c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body onload="test()">
<form action="mailto:one@example.org?cc=two@example.org&subject=&uuml;&#1072;&#1105;"
 enctype="text/plain" accept-charset="iso-8859-1" method="post">
<input name="Stra&szlig;e" value="&uuml;&#1072;&#1105;">
<input type=submit>
</form>
<script>
function test() {
  if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitForPolicyDelegate();
    document.getElementsByTagName("form")[0].submit();
  }
}
</script>
</body>
</html>