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

comments01.dat 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #data
  2. FOO<!-- BAR -->BAZ
  3. #errors
  4. #document
  5. | <html>
  6. | <head>
  7. | <body>
  8. | "FOO"
  9. | <!-- BAR -->
  10. | "BAZ"
  11. #data
  12. FOO<!-- BAR --!>BAZ
  13. #errors
  14. #document
  15. | <html>
  16. | <head>
  17. | <body>
  18. | "FOO"
  19. | <!-- BAR -->
  20. | "BAZ"
  21. #data
  22. FOO<!-- BAR -- >BAZ
  23. #errors
  24. #document
  25. | <html>
  26. | <head>
  27. | <body>
  28. | "FOO"
  29. | <!-- BAR -- >BAZ -->
  30. #data
  31. FOO<!-- BAR -- <QUX> -- MUX -->BAZ
  32. #errors
  33. #document
  34. | <html>
  35. | <head>
  36. | <body>
  37. | "FOO"
  38. | <!-- BAR -- <QUX> -- MUX -->
  39. | "BAZ"
  40. #data
  41. FOO<!-- BAR -- <QUX> -- MUX --!>BAZ
  42. #errors
  43. #document
  44. | <html>
  45. | <head>
  46. | <body>
  47. | "FOO"
  48. | <!-- BAR -- <QUX> -- MUX -->
  49. | "BAZ"
  50. #data
  51. FOO<!-- BAR -- <QUX> -- MUX -- >BAZ
  52. #errors
  53. #document
  54. | <html>
  55. | <head>
  56. | <body>
  57. | "FOO"
  58. | <!-- BAR -- <QUX> -- MUX -- >BAZ -->
  59. #data
  60. FOO<!---->BAZ
  61. #errors
  62. #document
  63. | <html>
  64. | <head>
  65. | <body>
  66. | "FOO"
  67. | <!-- -->
  68. | "BAZ"
  69. #data
  70. FOO<!--->BAZ
  71. #errors
  72. #document
  73. | <html>
  74. | <head>
  75. | <body>
  76. | "FOO"
  77. | <!-- -->
  78. | "BAZ"
  79. #data
  80. FOO<!-->BAZ
  81. #errors
  82. #document
  83. | <html>
  84. | <head>
  85. | <body>
  86. | "FOO"
  87. | <!-- -->
  88. | "BAZ"
  89. #data
  90. <?xml version="1.0">Hi
  91. #errors
  92. #document
  93. | <!-- ?xml version="1.0" -->
  94. | <html>
  95. | <head>
  96. | <body>
  97. | "Hi"
  98. #data
  99. <?xml version="1.0">
  100. #errors
  101. #document
  102. | <!-- ?xml version="1.0" -->
  103. | <html>
  104. | <head>
  105. | <body>
  106. #data
  107. <?xml version
  108. #errors
  109. #document
  110. | <!-- ?xml version -->
  111. | <html>
  112. | <head>
  113. | <body>
  114. #data
  115. FOO<!----->BAZ
  116. #errors
  117. #document
  118. | <html>
  119. | <head>
  120. | <body>
  121. | "FOO"
  122. | <!-- - -->
  123. | "BAZ"