diff options
author | Fred Drake <fdrake@acm.org> | 2003-03-14 16:21:57 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-03-14 16:21:57 (GMT) |
commit | 0834d77bc4f07e5632588ed636b6db21e87694cc (patch) | |
tree | 850724fd3c7dd6eeccc9dd060784f4787ea7a39c /Lib/test | |
parent | 080cb3268f770d2589ee350ace7f589927e8db98 (diff) | |
download | cpython-0834d77bc4f07e5632588ed636b6db21e87694cc.zip cpython-0834d77bc4f07e5632588ed636b6db21e87694cc.tar.gz cpython-0834d77bc4f07e5632588ed636b6db21e87694cc.tar.bz2 |
Accept commas in unquoted attribute values.
This closes SF patch #669683.
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/test_htmlparser.py | 4 | ||||
-rw-r--r-- | Lib/test/test_sgmllib.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index 8422751..a10c40b 100755 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -197,6 +197,10 @@ DOCTYPE html [ self._run_check("""<a b='' c="">""", [ ("starttag", "a", [("b", ""), ("c", "")]), ]) + # Regression test for SF patch #669683. + self._run_check("<e a=rgb(1,2,3)>", [ + ("starttag", "e", [("a", "rgb(1,2,3)")]), + ]) def test_attr_entity_replacement(self): self._run_check("""<a b='&><"''>""", [ diff --git a/Lib/test/test_sgmllib.py b/Lib/test/test_sgmllib.py index 90ed87e..6f4454f 100644 --- a/Lib/test/test_sgmllib.py +++ b/Lib/test/test_sgmllib.py @@ -200,6 +200,10 @@ DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN' self.check_events("""<a b='' c="">""", [ ("starttag", "a", [("b", ""), ("c", "")]), ]) + # Regression test for SF patch #669683. + self.check_events("<e a=rgb(1,2,3)>", [ + ("starttag", "e", [("a", "rgb(1,2,3)")]), + ]) def test_attr_funky_names(self): self.check_events("""<a a.b='v' c:d=v e-f=v>""", [ |