summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/mailto/get-non-ascii-text-plain-latin-1.html
blob: f5efeacd178ed4c30e1903792400ce8d821c2fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<meta charset="iso-8859-1">
<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="&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072;">
<input type="submit" value="Send">
</form>
<script>
function test() {
  if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitForPolicyDelegate();
    document.getElementsByTagName("form")[0].submit();
  }
}
</script>