Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.37 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>MS Edge bug with fields pattern</title>
  5.     </head>
  6.     <body>
  7.         <form method=GET action=#/>
  8.             <p>The field below requires the following pattern:
  9.             <pre>[0-9a-zA-Z]|[0-9a-zA-Z_]{2,40}</pre>
  10.             </p>
  11.             <input type="text" pattern="[0-9a-zA-Z]|[0-9a-zA-Z_]{2,40}"/><br/>
  12.             <br/>
  13.             <input type="submit"/>
  14.         </form>
  15.     </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement