summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/mailto/get-non-ascii-text-plain.html
blob: 450c03f163fc20f6ff8cc3eb281df4fff34aeabf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<meta charset="utf-8">
<body onload="test()">
<form method="get" enctype="text/plain" action="mailto:one@example.org">
<input type="text" size="10" maxlength="40" name="subject" value="Fr&egrave;re Fran&ccedil;ois">
<input type="text" size="10" maxlength="40" name="body" value="Проверка">
<input type="submit" value="Send">
</form>
<script>
function test() {
  if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitForPolicyDelegate();
    document.getElementsByTagName("form")[0].submit();
  }
}
</script>