chromium/third_party/blink/web_tests/fast/forms/mailto/formenctype-attribute-button-html.html

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body onload="test()">
<form method="post" action="mailto:">
Field 1: <input type="text" size="10" maxlength="40" name="to" value="[email protected]">
Field 2: <textarea name="body">Line 1
Line 2
@&amp;=,;?"+</textarea>
<button type="submit" id="submit" formenctype="text/plain" />
</form>
<script>
function test()
{
    if (window.testRunner) {
        testRunner.dumpAsText();
        testRunner.waitForPolicyDelegate();
    }
    document.getElementById("submit").click();
}
</script>
</body>
</html>