For some reason mailto works in every browser but chrome for me. is it just me or is it not supported anymore? because it had worked for me before but now it doesn't. not even the W3 schools mailto example works but it does try to but for some reason it doesn't work as seen here. It's not just my computer I've also tried a different computer in my house and I have also made sure that no chrome extensions are interrupting it.
Update: here is an example of mailto code that doesn't work for me:
<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>
Comment:<br>
<input type="text" name="comment" value="your comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>