The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.

pending-spec-changes.dat 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #data
  2. <input type="hidden"><frameset>
  3. #errors
  4. 21: Start tag seen without seeing a doctype first. Expected “<!DOCTYPE html>”.
  5. 31: “frameset” start tag seen.
  6. 31: End of file seen and there were open elements.
  7. #document
  8. | <html>
  9. | <head>
  10. | <frameset>
  11. #data
  12. <!DOCTYPE html><table><caption><svg>foo</table>bar
  13. #errors
  14. 47: End tag “table” did not match the name of the current open element (“svg”).
  15. 47: “table” closed but “caption” was still open.
  16. 47: End tag “table” seen, but there were open elements.
  17. 36: Unclosed element “svg”.
  18. #document
  19. | <!DOCTYPE html>
  20. | <html>
  21. | <head>
  22. | <body>
  23. | <table>
  24. | <caption>
  25. | <svg svg>
  26. | "foo"
  27. | "bar"
  28. #data
  29. <table><tr><td><svg><desc><td></desc><circle>
  30. #errors
  31. 7: Start tag seen without seeing a doctype first. Expected “<!DOCTYPE html>”.
  32. 30: A table cell was implicitly closed, but there were open elements.
  33. 26: Unclosed element “desc”.
  34. 20: Unclosed element “svg”.
  35. 37: Stray end tag “desc”.
  36. 45: End of file seen and there were open elements.
  37. 45: Unclosed element “circle”.
  38. 7: Unclosed element “table”.
  39. #document
  40. | <html>
  41. | <head>
  42. | <body>
  43. | <table>
  44. | <tbody>
  45. | <tr>
  46. | <td>
  47. | <svg svg>
  48. | <svg desc>
  49. | <td>
  50. | <circle>