From 7e9192179fdc0ca24cac7ecbecc571ea2cfc8a19 Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 16 Aug 2013 11:15:40 -0400 Subject: [PATCH] removed duplicate dispatch of noframes in inBodyPhase startTagHandler. now dispatches noframes to startTagRawtext. fixes #100 --- html5lib/html5parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html5lib/html5parser.py b/html5lib/html5parser.py index b0f14f39..ba39a64d 100644 --- a/html5lib/html5parser.py +++ b/html5lib/html5parser.py @@ -868,7 +868,7 @@ def __init__(self, parser, tree): self.startTagHandler = utils.MethodDispatcher([ ("html", self.startTagHtml), (("base", "basefont", "bgsound", "command", "link", "meta", - "noframes", "script", "style", "title"), + "script", "style", "title"), self.startTagProcessInHead), ("body", self.startTagBody), ("frameset", self.startTagFrameset),