Skip to content

Commit 7e91921

Browse files
author
Kevin
committed
removed duplicate dispatch of noframes in inBodyPhase startTagHandler. now dispatches noframes to startTagRawtext. fixes html5lib#100
1 parent 70e432c commit 7e91921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html5lib/html5parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ def __init__(self, parser, tree):
868868
self.startTagHandler = utils.MethodDispatcher([
869869
("html", self.startTagHtml),
870870
(("base", "basefont", "bgsound", "command", "link", "meta",
871-
"noframes", "script", "style", "title"),
871+
"script", "style", "title"),
872872
self.startTagProcessInHead),
873873
("body", self.startTagBody),
874874
("frameset", self.startTagFrameset),

0 commit comments

Comments
 (0)