In message <3c705f3f-e461-c7a7-3b70-54d63192a...@netsurf-browser.org> Michael Drake <t...@netsurf-browser.org> wrote:
> Could people please test build #4403 or later? (Or build from > latest master, if you compile from source.) > https://ci.netsurf-browser.org/builds/ > We are close to making a release, and would like to check that > nothing is broken. I have a page on my website which asks for a password in order to access a set of pages. The password is used verbatim and a suffix is added to make it point to the page. Ie password:- abracadabra becomes:- abracadabra.htm This technique no longer works using RISC OS and NS #4408 javascript on Code:- ===================================================================== <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>John's Gate</title> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> <script language="JavaScript"><!-- function go() { window.location.href = document.formname.passwordName.value+".htm"; return false; } //--></script> </head> <body> <div align="center">enter the password to access these pages<br> </div> <br> <div align="center"> <br> <form name="formname" onsubmit="return go()"> Enter the word:<br> <input type="password" name="passwordName" value="" size="10"> </form> </div> <div align="center">or<br> <a href="index.html">return</a><br> </div> <br> </body> </html> ===================================================================== John -- John Rickman