| <html> |
| <head> |
| <title> |
| foo="\</title\>" |
| <meta charset=windows-1255> |
| </title> |
| <meta charset=KOI8-R> |
| </head> |
| <body> |
| <pre id="log"></pre> |
| <script> |
| function log(message) |
| { |
| document.getElementById("log").innerText += message + "\n"; |
| } |
| |
| if (window.layoutTestController) |
| layoutTestController.dumpAsText(); |
| |
| if (document.inputEncoding == "KOI8-R") |
| log("PASS: " + document.inputEncoding); |
| else |
| log("FAIL: " + document.inputEncoding); |
| </script> |
| <p> |
| This test checks whether charset sniffer skips over escaped characters correctly. |
| </body> |
| </html> |