From 1e6d946594953e5bc7f4b33c52b0d6280ff6c0bd Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Wed, 6 Jul 2011 13:08:52 +1000 Subject: [PATCH] html: parse start tags that aren't explicitly otherwise dealt with. R=golang-dev, nigeltao CC=golang-dev https://golang.org/cl/4626080 --- src/pkg/html/parse.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/html/parse.go b/src/pkg/html/parse.go index c2931773faf..6a2bc1ea694 100644 --- a/src/pkg/html/parse.go +++ b/src/pkg/html/parse.go @@ -400,6 +400,7 @@ func inBodyIM(p *parser) (insertionMode, bool) { p.framesetOK = false default: // TODO. + p.addElement(p.tok.Data, p.tok.Attr) } case EndTagToken: switch p.tok.Data {