1234567891011121314151617 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>HTML Decoding Test</title>
- </head>
- <body>
- <div>
- <span custom-attr="&">some text</span>
- <form method="post" action="index.html">
- <input value="&"/>
- <input type="submit" value="Send"/>
- </form>
- </div>
- </body>
- </html>
|