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

html5test-com.dat 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. #data
  2. <div<div>
  3. #errors
  4. #document
  5. | <html>
  6. | <head>
  7. | <body>
  8. | <div<div>
  9. #data
  10. <div foo<bar=''>
  11. #errors
  12. #document
  13. | <html>
  14. | <head>
  15. | <body>
  16. | <div>
  17. | foo<bar=""
  18. #data
  19. <div foo=`bar`>
  20. #errors
  21. #document
  22. | <html>
  23. | <head>
  24. | <body>
  25. | <div>
  26. | foo="`bar`"
  27. #data
  28. <div \"foo=''>
  29. #errors
  30. #document
  31. | <html>
  32. | <head>
  33. | <body>
  34. | <div>
  35. | \"foo=""
  36. #data
  37. <a href='\nbar'></a>
  38. #errors
  39. #document
  40. | <html>
  41. | <head>
  42. | <body>
  43. | <a>
  44. | href="\nbar"
  45. #data
  46. <!DOCTYPE html>
  47. #errors
  48. #document
  49. | <!DOCTYPE html>
  50. | <html>
  51. | <head>
  52. | <body>
  53. #data
  54. &lang;&rang;
  55. #errors
  56. #document
  57. | <html>
  58. | <head>
  59. | <body>
  60. | "⟨⟩"
  61. #data
  62. &apos;
  63. #errors
  64. #document
  65. | <html>
  66. | <head>
  67. | <body>
  68. | "'"
  69. #data
  70. &ImaginaryI;
  71. #errors
  72. #document
  73. | <html>
  74. | <head>
  75. | <body>
  76. | "ⅈ"
  77. #data
  78. &Kopf;
  79. #errors
  80. #document
  81. | <html>
  82. | <head>
  83. | <body>
  84. | "𝕂"
  85. #data
  86. &notinva;
  87. #errors
  88. #document
  89. | <html>
  90. | <head>
  91. | <body>
  92. | "∉"
  93. #data
  94. <?import namespace="foo" implementation="#bar">
  95. #errors
  96. #document
  97. | <!-- ?import namespace="foo" implementation="#bar" -->
  98. | <html>
  99. | <head>
  100. | <body>
  101. #data
  102. <!--foo--bar-->
  103. #errors
  104. #document
  105. | <!-- foo--bar -->
  106. | <html>
  107. | <head>
  108. | <body>
  109. #data
  110. <![CDATA[x]]>
  111. #errors
  112. #document
  113. | <!-- [CDATA[x]] -->
  114. | <html>
  115. | <head>
  116. | <body>
  117. #data
  118. <textarea><!--</textarea>--></textarea>
  119. #errors
  120. #document
  121. | <html>
  122. | <head>
  123. | <body>
  124. | <textarea>
  125. | "<!--"
  126. | "-->"
  127. #data
  128. <textarea><!--</textarea>-->
  129. #errors
  130. #document
  131. | <html>
  132. | <head>
  133. | <body>
  134. | <textarea>
  135. | "<!--"
  136. | "-->"
  137. #data
  138. <style><!--</style>--></style>
  139. #errors
  140. #document
  141. | <html>
  142. | <head>
  143. | <style>
  144. | "<!--"
  145. | <body>
  146. | "-->"
  147. #data
  148. <style><!--</style>-->
  149. #errors
  150. #document
  151. | <html>
  152. | <head>
  153. | <style>
  154. | "<!--"
  155. | <body>
  156. | "-->"
  157. #data
  158. <ul><li>A </li> <li>B</li></ul>
  159. #errors
  160. #document
  161. | <html>
  162. | <head>
  163. | <body>
  164. | <ul>
  165. | <li>
  166. | "A "
  167. | " "
  168. | <li>
  169. | "B"
  170. #data
  171. <table><form><input type=hidden><input></form><div></div></table>
  172. #errors
  173. #document
  174. | <html>
  175. | <head>
  176. | <body>
  177. | <input>
  178. | <div>
  179. | <table>
  180. | <form>
  181. | <input>
  182. | type="hidden"
  183. #data
  184. <i>A<b>B<p></i>C</b>D
  185. #errors
  186. #document
  187. | <html>
  188. | <head>
  189. | <body>
  190. | <i>
  191. | "A"
  192. | <b>
  193. | "B"
  194. | <b>
  195. | <p>
  196. | <b>
  197. | <i>
  198. | "C"
  199. | "D"
  200. #data
  201. <div></div>
  202. #errors
  203. #document
  204. | <html>
  205. | <head>
  206. | <body>
  207. | <div>
  208. #data
  209. <svg></svg>
  210. #errors
  211. #document
  212. | <html>
  213. | <head>
  214. | <body>
  215. | <svg svg>
  216. #data
  217. <math></math>
  218. #errors
  219. #document
  220. | <html>
  221. | <head>
  222. | <body>
  223. | <math math>