aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/html
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-08html: fix typo in package docs.Nigel Tao
2011-11-07html: be able to test more than one testdata file.Nigel Tao
2011-11-04html/template: wraps package template instead of exposing func EscapeMike Samuel
2011-11-04html,bzip2,sql: rename Error methods that return error to ErrGustavo Niemeyer
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-03all: rename os.EOF to io.EOF in various non-code contextsVincent Vanackere
2011-11-03html,log,math: renamingsRob Pike
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-27html: fix print argument in testRuss Cox
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-25cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: ...Russ Cox
2011-10-26html: improve parsing of listsAndrew Balholm
2011-10-26html: improve parsing of tablesAndrew Balholm
2011-10-25html: remove the Tokenizer.ReturnComments option.Nigel Tao
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-18html: refactor the tokenizer; parse "</>" correctly.Nigel Tao
2011-10-16html: tokenize "a < b" as one whole text token.Nigel Tao
2011-10-15html: improve parsing of comments and "bogus comments"Andrew Balholm
2011-10-14html: fix some tokenizer bugs with attribute key/values.Nigel Tao
2011-10-14html: rewrite the tokenizer to be more consistent.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-11html: parse more malformed tags.Nigel Tao
2011-08-10html: parse malformed tags missing a '>', such as `<p id=0</p>`.Nigel Tao
2011-08-01html: parse doctype tokens; merge adjacent text nodes.Nigel Tao
2011-07-21html: sync html/testdata/webkit with upstream WebKit.Nigel Tao
2011-07-21html: parse misnested formatting tags according to the HTML5 spec.Nigel Tao
2011-07-21html: handle character entities without semicolonsAndrew Balholm
2011-07-13html: update section references in comments to the latest HTML5 spec.Nigel Tao
2011-07-06html: parse start tags that aren't explicitly otherwise dealt with.Yasuhiro Matsumoto
2011-06-30html: fix nesting when parsing a close tag.Yasuhiro Matsumoto
2011-06-28strings.Split: make the default to split all.Rob Pike
2011-06-06html: improve attribute parsing, note package statusBrad Fitzpatrick