diff options
author | Ezio Melotti <none@none> | 2011-04-07 19:03:31 (GMT) |
---|---|---|
committer | Ezio Melotti <none@none> | 2011-04-07 19:03:31 (GMT) |
commit | 2e3607c1e758865519b28066b8925f37203e2197 (patch) | |
tree | ec09ce29a9dcc1bfa91e7e0f65428666332eda41 /Lib/test/test_htmlparser.py | |
parent | 9b5ac3efa64d72b54d4f1ab32a95c260b39ab98d (diff) | |
download | cpython-2e3607c1e758865519b28066b8925f37203e2197.zip cpython-2e3607c1e758865519b28066b8925f37203e2197.tar.gz cpython-2e3607c1e758865519b28066b8925f37203e2197.tar.bz2 |
#7311: fix html.parser to accept non-ASCII attribute values.
Diffstat (limited to 'Lib/test/test_htmlparser.py')
-rw-r--r-- | Lib/test/test_htmlparser.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index 5ecd016..637ab01 100644 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -217,6 +217,23 @@ DOCTYPE html [ ("starttag", "a", [("href", "mailto:xyz@example.com")]), ]) + def test_attr_nonascii(self): + # see issue 7311 + self._run_check("<img src=/foo/bar.png alt=\u4e2d\u6587>", [ + ("starttag", "img", [("src", "/foo/bar.png"), + ("alt", "\u4e2d\u6587")]), + ]) + self._run_check("<a title='\u30c6\u30b9\u30c8' " + "href='\u30c6\u30b9\u30c8.html'>", [ + ("starttag", "a", [("title", "\u30c6\u30b9\u30c8"), + ("href", "\u30c6\u30b9\u30c8.html")]), + ]) + self._run_check('<a title="\u30c6\u30b9\u30c8" ' + 'href="\u30c6\u30b9\u30c8.html">', [ + ("starttag", "a", [("title", "\u30c6\u30b9\u30c8"), + ("href", "\u30c6\u30b9\u30c8.html")]), + ]) + def test_attr_entity_replacement(self): self._run_check("""<a b='&><"''>""", [ ("starttag", "a", [("b", "&><\"'")]), |