]> Cypherpunks repositories - gostls13.git/commit
html: properly close <marquee> elements.
authorAndrew Balholm <andybalholm@gmail.com>
Wed, 2 Nov 2011 23:11:06 +0000 (10:11 +1100)
committerNigel Tao <nigeltao@golang.org>
Wed, 2 Nov 2011 23:11:06 +0000 (10:11 +1100)
commitcf6a71216211d8d3f487ab158cbf681742e790d4
tree33bb9db28b7c1091dd88d46c6bf1cc8e7b806355
parent33f1d47b38f9c48b326642e2005e24ec06176172
html: properly close <marquee> elements.

Pass tests1.dat, test 80:
<a href=a>aa<marquee>aa<a href=b>bb</marquee>aa

| <html>
|   <head>
|   <body>
|     <a>
|       href="a"
|       "aa"
|       <marquee>
|         "aa"
|         <a>
|           href="b"
|           "bb"
|       "aa"

Also pass tests through test 82:
<!DOCTYPE html><spacer>foo

R=nigeltao
CC=golang-dev
https://golang.org/cl/5319071
src/pkg/html/parse.go
src/pkg/html/parse_test.go