aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/html/parse_test.go
AgeCommit message (Expand)Author
2011-11-09html: treat <image> as <img>Andrew Balholm
2011-11-08html: parse <body>, <base>, <link>, <meta>, and <title> tags inside page bodyAndrew Balholm
2011-11-07html: be able to test more than one testdata file.Nigel Tao
2011-11-04html: properly close <tr> element when an new <tr> starts.Andrew Balholm
2011-11-04html: move <link> element from after <head> into <head>Andrew Balholm
2011-11-03html: parse <link> elements in <head>Andrew Balholm
2011-11-03html: properly close <marquee> elements.Andrew Balholm
2011-11-01src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox
2011-11-02html: stop at scope marker node when generating implied </a> tagsAndrew Balholm
2011-11-02html: refactor the blacklist for the "render and re-parse" test.Nigel Tao
2011-11-01html: process </td> tags; foster parent at most one node per tokenAndrew Balholm
2011-10-29html: adjust bookmark in "adoption agency" algorithmAndrew Balholm
2011-10-28html: don't run "adoption agency" on elements that aren't in scope.Andrew Balholm
2011-10-28html: allow whitespace text nodes in <head>Andrew Balholm
2011-10-27html: parse <style> elements inside <head> element.Andrew Balholm
2011-10-27html: close <option> element when opening <optgroup>Andrew Balholm
2011-10-26html: improve parsing of listsAndrew Balholm
2011-10-26html: improve parsing of tablesAndrew Balholm
2011-10-25html: dump attributes when running parser tests.Andrew Balholm
2011-10-23html: implement foster parentingAndrew Balholm
2011-10-22html: parse <select> tags.Nigel Tao
2011-10-20html: parse and render comment nodes.Nigel Tao
2011-10-19html: parse raw text and RCDATA elements, such as <script> and <title>.Nigel Tao
2011-10-13html: insert implied <p> and </p> tagsAndrew Balholm
2011-10-13html: when a parse test fails, don't bother testing rendering.Nigel Tao
2011-10-10html: add a Render function.Nigel Tao
2011-08-01html: parse doctype tokens; merge adjacent text nodes.Nigel Tao
2011-07-21html: parse misnested formatting tags according to the HTML5 spec.Nigel Tao
2011-04-27ioutil: add Discard, update tree.Brad Fitzpatrick
2011-04-04os: New Open API.Rob Pike
2010-12-15html: parse "<h1>foo<h2>bar".Nigel Tao
2010-12-10html: parse <table><tr><td> tags.Nigel Tao
2010-12-08html: handle unexpected EOF during parsing.Nigel Tao
2010-12-07html: first cut at a parser.Nigel Tao