From f2b602ed4252ca0f37cf1ff0494342b75f0b6bfc Mon Sep 17 00:00:00 2001 From: Andrew Balholm Date: Tue, 8 Nov 2011 17:55:17 +1100 Subject: html: parse , , , , and tags inside page body Pass tests1.dat, test 87: <body><body><base><link><meta><title><p>

| | | | | | | | "<p>" | <p> Handling the last <body> tag requires correcting the original insertion mode in useTheRulesFor. Also pass test 88: <textarea><p></textarea> R=nigeltao CC=golang-dev https://golang.org/cl/5364047 --- src/pkg/html/parse_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/html/parse_test.go') diff --git a/src/pkg/html/parse_test.go b/src/pkg/html/parse_test.go index c938cb9e69..1f4ffa9564 100644 --- a/src/pkg/html/parse_test.go +++ b/src/pkg/html/parse_test.go @@ -133,7 +133,7 @@ func TestParser(t *testing.T) { n int }{ // TODO(nigeltao): Process all the test cases from all the .dat files. - {"tests1.dat", 87}, + {"tests1.dat", 89}, {"tests2.dat", 0}, {"tests3.dat", 0}, } -- cgit v1.3-5-g9baa