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

inbody01.dat 437B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #data
  2. <button>1</foo>
  3. #errors
  4. #document
  5. | <html>
  6. | <head>
  7. | <body>
  8. | <button>
  9. | "1"
  10. #data
  11. <foo>1<p>2</foo>
  12. #errors
  13. #document
  14. | <html>
  15. | <head>
  16. | <body>
  17. | <foo>
  18. | "1"
  19. | <p>
  20. | "2"
  21. #data
  22. <dd>1</foo>
  23. #errors
  24. #document
  25. | <html>
  26. | <head>
  27. | <body>
  28. | <dd>
  29. | "1"
  30. #data
  31. <foo>1<dd>2</foo>
  32. #errors
  33. #document
  34. | <html>
  35. | <head>
  36. | <body>
  37. | <foo>
  38. | "1"
  39. | <dd>
  40. | "2"