chromium/third_party/blink/web_tests/fast/forms/mailto/get-multiple-items-x-www-form-urlencoded.html

<body onload="test()">
<form method="get" enctype="application/x-www-form-urlencoded" action="mailto:[email protected]">
Field 1: <input type="text" size="10" maxlength="40" name="to" value="[email protected]">
Field 2: <input type="text" size="10" maxlength="40" name="field2" value="value 2">
<input type="submit" value="Send"> 
</form>
<script>
function test() {
  if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitForPolicyDelegate();
    document.getElementsByTagName("form")[0].submit();
  }
}
</script>