An error occurred fetching the project authors.
  1. 10 Jan, 2012 2 commits
  2. 03 Jan, 2012 1 commit
  3. 25 Dec, 2011 1 commit
    • Nigel Tao's avatar
      html: adjust foreign attributes. · d5e45e3a
      Nigel Tao authored
      Pass tests10.dat, test 22:
      <!DOCTYPE html><body xlink:href=foo><svg xlink:href=foo></svg>
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |   <body>
      |     xlink:href="foo"
      |     <svg svg>
      |       xlink href="foo"
      
      Also pass tests through test 29:
      <div><svg><path></svg><path>
      
      R=andybalholm
      CC=golang-dev
      https://golang.org/cl/5489117
      d5e45e3a
  4. 24 Dec, 2011 1 commit
    • Andrew Balholm's avatar
      html: "in select in table" insertion mode. · b28f0175
      Andrew Balholm authored
      Pass tests10.dat, test 16:
      <!DOCTYPE
      html><body><table><tr><td><select><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <tbody>
      |         <tr>
      |           <td>
      |             <select>
      |               "foobarbaz"
      |     <p>
      |       "quux"
      
      Also pass tests through test 21:
      <!DOCTYPE html><frameset></frameset><svg><g></g><g></g><p><span>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5505069
      b28f0175
  5. 23 Dec, 2011 1 commit
  6. 20 Dec, 2011 1 commit
    • Nigel Tao's avatar
      html: handle breakout tags in foreign content. · fe28d1aa
      Nigel Tao authored
      Also recognize that, in the latest version of the HTML5 spec,
      foreign content is not an insertion mode, but a separate concern.
      
      Pass tests10.dat, test 13:
      <!DOCTYPE html><body><table><caption><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <caption>
      |         <svg svg>
      |           <svg g>
      |             "foo"
      |           <svg g>
      |             "bar"
      |         <p>
      |           "baz"
      |     <p>
      |       "quux"
      
      Also pass tests through test 15:
      <!DOCTYPE html><body><table><colgroup><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
      
      R=andybalholm
      CC=golang-dev
      https://golang.org/cl/5494078
      fe28d1aa
  7. 19 Dec, 2011 2 commits
  8. 15 Dec, 2011 1 commit
    • Nigel Tao's avatar
      html: handle end tags in foreign objects. · a369004e
      Nigel Tao authored
      I'm not 100% sure I get all the corner cases right, for end tags, but
      I'll let the test suite smoke it out.
      
      Pass tests10.dat, test 1:
      <!DOCTYPE html><svg></svg><![CDATA[a]]>
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |   <body>
      |     <svg svg>
      |     <!-- [CDATA[a]] -->
      
      Also pass tests through test 5:
      <!DOCTYPE html><body><table><svg></svg></table>
      
      R=andybalholm
      CC=golang-dev
      https://golang.org/cl/5495044
      a369004e
  9. 14 Dec, 2011 2 commits
  10. 13 Dec, 2011 1 commit
  11. 12 Dec, 2011 1 commit
  12. 02 Dec, 2011 1 commit
  13. 01 Dec, 2011 1 commit
  14. 30 Nov, 2011 2 commits
  15. 29 Nov, 2011 1 commit
  16. 27 Nov, 2011 2 commits
  17. 24 Nov, 2011 1 commit
  18. 23 Nov, 2011 1 commit
  19. 22 Nov, 2011 2 commits
  20. 21 Nov, 2011 1 commit
  21. 20 Nov, 2011 1 commit
  22. 17 Nov, 2011 1 commit
    • Andrew Balholm's avatar
      html: parse <isindex> · a1dbfa6f
      Andrew Balholm authored
      Pass tests2.dat, test 42:
      <isindex test=x name=x>
      
      | <html>
      |   <head>
      |   <body>
      |     <form>
      |       <hr>
      |       <label>
      |         "This is a searchable index. Enter search keywords: "
      |         <input>
      |           name="isindex"
      |           test="x"
      |       <hr>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5399049
      a1dbfa6f
  23. 16 Nov, 2011 3 commits
  24. 15 Nov, 2011 2 commits
  25. 13 Nov, 2011 1 commit
  26. 12 Nov, 2011 1 commit
    • Andrew Balholm's avatar
      html: handle end tags in strange places · 3df05124
      Andrew Balholm authored
      Pass tests1.dat, test 111:
      </strong></b></em></i></u></strike></s></blink></tt></pre></big></small></font></select></h1></h2></h3></h4></h5></h6></body></br></a></img></title></span></style></script></table></th></td></tr></frame></area></link></param></hr></input></col></base></meta></basefont></bgsound></embed></spacer></p></dd></dt></caption></colgroup></tbody></tfoot></thead></address></blockquote></center></dir></div></dl></fieldset></listing></menu></ol></ul></li></nobr></wbr></form></button></marquee></object></html></frameset></head></iframe></image></isindex></noembed></noframes></noscript></optgroup></option></plaintext></textarea>
      
      | <html>
      |   <head>
      |   <body>
      |     <br>
      |     <p>
      
      Also pass all the remaining tests in tests1.dat.
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5372066
      3df05124
  27. 11 Nov, 2011 2 commits
    • Andrew Balholm's avatar
      html: ignore <col> tag outside tables · 0a61c846
      Andrew Balholm authored
      Pass tests1.dat, test 109:
      <table><col><tbody><col><tr><col><td><col></table><col>
      
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |         <tr>
      |       <colgroup>
      |         <col>
      |       <tbody>
      |         <tr>
      |           <td>
      |       <colgroup>
      |         <col>
      
      Also pass test 110:
      <table><colgroup><tbody><colgroup><tr><colgroup><td><colgroup></table><colgroup>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5369069
      0a61c846
    • Andrew Balholm's avatar
      html: parse column groups · 83f61a27
      Andrew Balholm authored
      Pass tests1.dat, test 108:
      <table><colgroup><col><colgroup><col><col><col><colgroup><col><col><thead><tr><td></table>
      
      | <html>
      |   <head>
      |   <body>
      |     <table>
      |       <colgroup>
      |         <col>
      |       <colgroup>
      |         <col>
      |         <col>
      |         <col>
      |       <colgroup>
      |         <col>
      |         <col>
      |       <thead>
      |         <tr>
      |           <td>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5369061
      83f61a27
  28. 10 Nov, 2011 1 commit
    • Andrew Balholm's avatar
      html: parse framesets · e9e874b7
      Andrew Balholm authored
      Pass tests1.dat, test 106:
      <frameset><frame><frameset><frame></frameset><noframes></noframes></frameset>
      
      | <html>
      |   <head>
      |   <frameset>
      |     <frame>
      |     <frameset>
      |       <frame>
      |     <noframes>
      
      Also pass test 107:
      <h1><table><td><h3></table><h3></h1>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5373050
      e9e874b7
  29. 09 Nov, 2011 2 commits