html_decoding.html 321 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>HTML Decoding Test</title>
  5. </head>
  6. <body>
  7. <div>
  8. <span custom-attr="&amp;">some text</span>
  9. <form method="post" action="index.html">
  10. <input value="&amp;"/>
  11. <input type="submit" value="Send"/>
  12. </form>
  13. </div>
  14. </body>
  15. </html>