appLinksPostNavigationPhone.html (312B)
1 <!doctype html> 2 <meta charset="utf-8" /> 3 <meta name="viewport" content="width=device-width, initial-scale=1" /> 4 This is the page with the auto-submitting form that redirects to an phone 5 intent. 6 <form action="tel://1234567890" method="POST"></form> 7 <script> 8 const f = document.forms[0]; 9 f.submit(); 10 </script>