template.dat 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  1. #data
  2. <body><template>Hello</template>
  3. #errors
  4. #document
  5. | <html>
  6. | <head>
  7. | <body>
  8. | <template>
  9. | content
  10. | "Hello"
  11. #data
  12. <template>Hello</template>
  13. #errors
  14. #document
  15. | <html>
  16. | <head>
  17. | <template>
  18. | content
  19. | "Hello"
  20. | <body>
  21. #data
  22. <template></template><div></div>
  23. #errors
  24. #document
  25. | <html>
  26. | <head>
  27. | <template>
  28. | content
  29. | <body>
  30. | <div>
  31. #data
  32. <html><template>Hello</template>
  33. #errors
  34. #document
  35. | <html>
  36. | <head>
  37. | <template>
  38. | content
  39. | "Hello"
  40. | <body>
  41. #data
  42. <head><template><div></div></template></head>
  43. #errors
  44. #document
  45. | <html>
  46. | <head>
  47. | <template>
  48. | content
  49. | <div>
  50. | <body>
  51. #data
  52. <div><template><div><span></template><b>
  53. #errors
  54. #document
  55. | <html>
  56. | <head>
  57. | <body>
  58. | <div>
  59. | <template>
  60. | content
  61. | <div>
  62. | <span>
  63. | <b>
  64. #data
  65. <div><template></div>Hello
  66. #errors
  67. #document
  68. | <html>
  69. | <head>
  70. | <body>
  71. | <div>
  72. | <template>
  73. | content
  74. | "Hello"
  75. #data
  76. <div></template></div>
  77. #errors
  78. #document
  79. | <html>
  80. | <head>
  81. | <body>
  82. | <div>
  83. #data
  84. <table><template></template></table>
  85. #errors
  86. #document
  87. | <html>
  88. | <head>
  89. | <body>
  90. | <table>
  91. | <template>
  92. | content
  93. #data
  94. <table><template></template></div>
  95. #errors
  96. #document
  97. | <html>
  98. | <head>
  99. | <body>
  100. | <table>
  101. | <template>
  102. | content
  103. #data
  104. <table><div><template></template></div>
  105. #errors
  106. #document
  107. | <html>
  108. | <head>
  109. | <body>
  110. | <div>
  111. | <template>
  112. | content
  113. | <table>
  114. #data
  115. <table><template></template><div></div>
  116. #errors
  117. #document
  118. | <html>
  119. | <head>
  120. | <body>
  121. | <div>
  122. | <table>
  123. | <template>
  124. | content
  125. #data
  126. <table> <template></template></table>
  127. #errors
  128. #document
  129. | <html>
  130. | <head>
  131. | <body>
  132. | <table>
  133. | " "
  134. | <template>
  135. | content
  136. #data
  137. <table><tbody><template></template></tbody>
  138. #errors
  139. #document
  140. | <html>
  141. | <head>
  142. | <body>
  143. | <table>
  144. | <tbody>
  145. | <template>
  146. | content
  147. #data
  148. <table><tbody><template></tbody></template>
  149. #errors
  150. #document
  151. | <html>
  152. | <head>
  153. | <body>
  154. | <table>
  155. | <tbody>
  156. | <template>
  157. | content
  158. #data
  159. <table><tbody><template></template></tbody></table>
  160. #errors
  161. #document
  162. | <html>
  163. | <head>
  164. | <body>
  165. | <table>
  166. | <tbody>
  167. | <template>
  168. | content
  169. #data
  170. <table><thead><template></template></thead>
  171. #errors
  172. #document
  173. | <html>
  174. | <head>
  175. | <body>
  176. | <table>
  177. | <thead>
  178. | <template>
  179. | content
  180. #data
  181. <table><tfoot><template></template></tfoot>
  182. #errors
  183. #document
  184. | <html>
  185. | <head>
  186. | <body>
  187. | <table>
  188. | <tfoot>
  189. | <template>
  190. | content
  191. #data
  192. <select><template></template></select>
  193. #errors
  194. #document
  195. | <html>
  196. | <head>
  197. | <body>
  198. | <select>
  199. | <template>
  200. | content
  201. #data
  202. <select><template><option></option></template></select>
  203. #errors
  204. #document
  205. | <html>
  206. | <head>
  207. | <body>
  208. | <select>
  209. | <template>
  210. | content
  211. | <option>
  212. #data
  213. <template><option></option></select><option></option></template>
  214. #errors
  215. #document
  216. | <html>
  217. | <head>
  218. | <template>
  219. | content
  220. | <option>
  221. | <option>
  222. | <body>
  223. #data
  224. <select><template></template><option></select>
  225. #errors
  226. #document
  227. | <html>
  228. | <head>
  229. | <body>
  230. | <select>
  231. | <template>
  232. | content
  233. | <option>
  234. #data
  235. <select><option><template></template></select>
  236. #errors
  237. #document
  238. | <html>
  239. | <head>
  240. | <body>
  241. | <select>
  242. | <option>
  243. | <template>
  244. | content
  245. #data
  246. <select><template>
  247. #errors
  248. #document
  249. | <html>
  250. | <head>
  251. | <body>
  252. | <select>
  253. | <template>
  254. | content
  255. #data
  256. <select><option></option><template>
  257. #errors
  258. #document
  259. | <html>
  260. | <head>
  261. | <body>
  262. | <select>
  263. | <option>
  264. | <template>
  265. | content
  266. #data
  267. <select><option></option><template><option>
  268. #errors
  269. #document
  270. | <html>
  271. | <head>
  272. | <body>
  273. | <select>
  274. | <option>
  275. | <template>
  276. | content
  277. | <option>
  278. #data
  279. <table><thead><template><td></template></table>
  280. #errors
  281. #document
  282. | <html>
  283. | <head>
  284. | <body>
  285. | <table>
  286. | <thead>
  287. | <template>
  288. | content
  289. | <td>
  290. #data
  291. <table><template><thead></template></table>
  292. #errors
  293. #document
  294. | <html>
  295. | <head>
  296. | <body>
  297. | <table>
  298. | <template>
  299. | content
  300. | <thead>
  301. #data
  302. <body><table><template><td></tr><div></template></table>
  303. #errors
  304. #document
  305. | <html>
  306. | <head>
  307. | <body>
  308. | <table>
  309. | <template>
  310. | content
  311. | <td>
  312. | <div>
  313. #data
  314. <table><template><thead></template></thead></table>
  315. #errors
  316. #document
  317. | <html>
  318. | <head>
  319. | <body>
  320. | <table>
  321. | <template>
  322. | content
  323. | <thead>
  324. #data
  325. <table><thead><template><tr></template></table>
  326. #errors
  327. #document
  328. | <html>
  329. | <head>
  330. | <body>
  331. | <table>
  332. | <thead>
  333. | <template>
  334. | content
  335. | <tr>
  336. #data
  337. <table><template><tr></template></table>
  338. #errors
  339. #document
  340. | <html>
  341. | <head>
  342. | <body>
  343. | <table>
  344. | <template>
  345. | content
  346. | <tr>
  347. #data
  348. <table><tr><template><td>
  349. #errors
  350. #document
  351. | <html>
  352. | <head>
  353. | <body>
  354. | <table>
  355. | <tbody>
  356. | <tr>
  357. | <template>
  358. | content
  359. | <td>
  360. #data
  361. <table><template><tr><template><td></template></tr></template></table>
  362. #errors
  363. #document
  364. | <html>
  365. | <head>
  366. | <body>
  367. | <table>
  368. | <template>
  369. | content
  370. | <tr>
  371. | <template>
  372. | content
  373. | <td>
  374. #data
  375. <table><template><tr><template><td></td></template></tr></template></table>
  376. #errors
  377. #document
  378. | <html>
  379. | <head>
  380. | <body>
  381. | <table>
  382. | <template>
  383. | content
  384. | <tr>
  385. | <template>
  386. | content
  387. | <td>
  388. #data
  389. <table><template><td></template>
  390. #errors
  391. #document
  392. | <html>
  393. | <head>
  394. | <body>
  395. | <table>
  396. | <template>
  397. | content
  398. | <td>
  399. #data
  400. <body><template><td></td></template>
  401. #errors
  402. #document
  403. | <html>
  404. | <head>
  405. | <body>
  406. | <template>
  407. | content
  408. | <td>
  409. #data
  410. <body><template><template><tr></tr></template><td></td></template>
  411. #errors
  412. #document
  413. | <html>
  414. | <head>
  415. | <body>
  416. | <template>
  417. | content
  418. | <template>
  419. | content
  420. | <tr>
  421. | <td>
  422. #data
  423. <table><colgroup><template><col>
  424. #errors
  425. #document
  426. | <html>
  427. | <head>
  428. | <body>
  429. | <table>
  430. | <colgroup>
  431. | <template>
  432. | content
  433. | <col>
  434. #data
  435. <frameset><template><frame></frame></template></frameset>
  436. #errors
  437. #document
  438. | <html>
  439. | <head>
  440. | <frameset>
  441. | <template>
  442. | content
  443. | <frame>
  444. #data
  445. <template><frame></frame></frameset><frame></frame></template>
  446. #errors
  447. #document
  448. | <html>
  449. | <head>
  450. | <template>
  451. | content
  452. | <frame>
  453. | <frame>
  454. | <body>
  455. #data
  456. <template><div><frameset><span></span></div><span></span></template>
  457. #errors
  458. #document
  459. | <html>
  460. | <head>
  461. | <template>
  462. | content
  463. | <div>
  464. | <span>
  465. | <span>
  466. | <body>
  467. #data
  468. <body><template><div><frameset><span></span></div><span></span></template></body>
  469. #errors
  470. #document
  471. | <html>
  472. | <head>
  473. | <body>
  474. | <template>
  475. | content
  476. | <div>
  477. | <span>
  478. | <span>
  479. #data
  480. <body><template><script>var i = 1;</script><td></td></template>
  481. #errors
  482. #document
  483. | <html>
  484. | <head>
  485. | <body>
  486. | <template>
  487. | content
  488. | <script>
  489. | "var i = 1;"
  490. | <td>
  491. #data
  492. <body><template><tr><div></div></tr></template>
  493. #errors
  494. #document
  495. | <html>
  496. | <head>
  497. | <body>
  498. | <template>
  499. | content
  500. | <tr>
  501. | <div>
  502. #data
  503. <body><template><tr></tr><td></td></template>
  504. #errors
  505. #document
  506. | <html>
  507. | <head>
  508. | <body>
  509. | <template>
  510. | content
  511. | <tr>
  512. | <tr>
  513. | <td>
  514. #data
  515. <body><template><td></td></tr><td></td></template>
  516. #errors
  517. #document
  518. | <html>
  519. | <head>
  520. | <body>
  521. | <template>
  522. | content
  523. | <td>
  524. | <td>
  525. #data
  526. <body><template><td></td><tbody><td></td></template>
  527. #errors
  528. #document
  529. | <html>
  530. | <head>
  531. | <body>
  532. | <template>
  533. | content
  534. | <td>
  535. | <td>
  536. #data
  537. <body><template><td></td><caption></caption><td></td></template>
  538. #errors
  539. #document
  540. | <html>
  541. | <head>
  542. | <body>
  543. | <template>
  544. | content
  545. | <td>
  546. | <td>
  547. #data
  548. <body><template><td></td><colgroup></caption><td></td></template>
  549. #errors
  550. #document
  551. | <html>
  552. | <head>
  553. | <body>
  554. | <template>
  555. | content
  556. | <td>
  557. | <td>
  558. #data
  559. <body><template><td></td></table><td></td></template>
  560. #errors
  561. #document
  562. | <html>
  563. | <head>
  564. | <body>
  565. | <template>
  566. | content
  567. | <td>
  568. | <td>
  569. #data
  570. <body><template><tr></tr><tbody><tr></tr></template>
  571. #errors
  572. #document
  573. | <html>
  574. | <head>
  575. | <body>
  576. | <template>
  577. | content
  578. | <tr>
  579. | <tr>
  580. #data
  581. <body><template><tr></tr><caption><tr></tr></template>
  582. #errors
  583. #document
  584. | <html>
  585. | <head>
  586. | <body>
  587. | <template>
  588. | content
  589. | <tr>
  590. | <tr>
  591. #data
  592. <body><template><tr></tr></table><tr></tr></template>
  593. #errors
  594. #document
  595. | <html>
  596. | <head>
  597. | <body>
  598. | <template>
  599. | content
  600. | <tr>
  601. | <tr>
  602. #data
  603. <body><template><thead></thead><caption></caption><tbody></tbody></template>
  604. #errors
  605. #document
  606. | <html>
  607. | <head>
  608. | <body>
  609. | <template>
  610. | content
  611. | <thead>
  612. | <caption>
  613. | <tbody>
  614. #data
  615. <body><template><thead></thead></table><tbody></tbody></template></body>
  616. #errors
  617. #document
  618. | <html>
  619. | <head>
  620. | <body>
  621. | <template>
  622. | content
  623. | <thead>
  624. | <tbody>
  625. #data
  626. <body><template><div><tr></tr></div></template>
  627. #errors
  628. #document
  629. | <html>
  630. | <head>
  631. | <body>
  632. | <template>
  633. | content
  634. | <div>
  635. #data
  636. <body><template><em>Hello</em></template>
  637. #errors
  638. #document
  639. | <html>
  640. | <head>
  641. | <body>
  642. | <template>
  643. | content
  644. | <em>
  645. | "Hello"
  646. #data
  647. <body><template><!--comment--></template>
  648. #errors
  649. #document
  650. | <html>
  651. | <head>
  652. | <body>
  653. | <template>
  654. | content
  655. | <!-- comment -->
  656. #data
  657. <body><template><style></style><td></td></template>
  658. #errors
  659. #document
  660. | <html>
  661. | <head>
  662. | <body>
  663. | <template>
  664. | content
  665. | <style>
  666. | <td>
  667. #data
  668. <body><template><meta><td></td></template>
  669. #errors
  670. #document
  671. | <html>
  672. | <head>
  673. | <body>
  674. | <template>
  675. | content
  676. | <meta>
  677. | <td>
  678. #data
  679. <body><template><link><td></td></template>
  680. #errors
  681. #document
  682. | <html>
  683. | <head>
  684. | <body>
  685. | <template>
  686. | content
  687. | <link>
  688. | <td>
  689. #data
  690. <body><template><template><tr></tr></template><td></td></template>
  691. #errors
  692. #document
  693. | <html>
  694. | <head>
  695. | <body>
  696. | <template>
  697. | content
  698. | <template>
  699. | content
  700. | <tr>
  701. | <td>
  702. #data
  703. <body><table><colgroup><template><col></col></template></colgroup></table></body>
  704. #errors
  705. #document
  706. | <html>
  707. | <head>
  708. | <body>
  709. | <table>
  710. | <colgroup>
  711. | <template>
  712. | content
  713. | <col>
  714. #data
  715. <body a=b><template><div></div><body c=d><div></div></body></template></body>
  716. #errors
  717. #document
  718. | <html>
  719. | <head>
  720. | <body>
  721. | a="b"
  722. | <template>
  723. | content
  724. | <div>
  725. | <div>
  726. #data
  727. <html a=b><template><div><html b=c><span></template>
  728. #errors
  729. #document
  730. | <html>
  731. | a="b"
  732. | <head>
  733. | <template>
  734. | content
  735. | <div>
  736. | <span>
  737. | <body>
  738. #data
  739. <html a=b><template><col></col><html b=c><col></col></template>
  740. #errors
  741. #document
  742. | <html>
  743. | a="b"
  744. | <head>
  745. | <template>
  746. | content
  747. | <col>
  748. | <col>
  749. | <body>
  750. #data
  751. <html a=b><template><frame></frame><html b=c><frame></frame></template>
  752. #errors
  753. #document
  754. | <html>
  755. | a="b"
  756. | <head>
  757. | <template>
  758. | content
  759. | <frame>
  760. | <frame>
  761. | <body>
  762. #data
  763. <body><template><tr></tr><template></template><td></td></template>
  764. #errors
  765. #document
  766. | <html>
  767. | <head>
  768. | <body>
  769. | <template>
  770. | content
  771. | <tr>
  772. | <template>
  773. | content
  774. | <tr>
  775. | <td>
  776. #data
  777. <body><template><thead></thead><template><tr></tr></template><tr></tr><tfoot></tfoot></template>
  778. #errors
  779. #document
  780. | <html>
  781. | <head>
  782. | <body>
  783. | <template>
  784. | content
  785. | <thead>
  786. | <template>
  787. | content
  788. | <tr>
  789. | <tbody>
  790. | <tr>
  791. | <tfoot>
  792. #data
  793. <body><template><template><b><template></template></template>text</template>
  794. #errors
  795. #document
  796. | <html>
  797. | <head>
  798. | <body>
  799. | <template>
  800. | content
  801. | <template>
  802. | content
  803. | <b>
  804. | <template>
  805. | content
  806. | "text"
  807. #data
  808. <body><template><col><colgroup>
  809. #errors
  810. #document
  811. | <html>
  812. | <head>
  813. | <body>
  814. | <template>
  815. | content
  816. | <col>
  817. #data
  818. <body><template><col></colgroup>
  819. #errors
  820. #document
  821. | <html>
  822. | <head>
  823. | <body>
  824. | <template>
  825. | content
  826. | <col>
  827. #data
  828. <body><template><col><colgroup></template></body>
  829. #errors
  830. #document
  831. | <html>
  832. | <head>
  833. | <body>
  834. | <template>
  835. | content
  836. | <col>
  837. #data
  838. <body><template><col><div>
  839. #errors
  840. #document
  841. | <html>
  842. | <head>
  843. | <body>
  844. | <template>
  845. | content
  846. | <col>
  847. #data
  848. <body><template><col></div>
  849. #errors
  850. #document
  851. | <html>
  852. | <head>
  853. | <body>
  854. | <template>
  855. | content
  856. | <col>
  857. #data
  858. <body><template><col>Hello
  859. #errors
  860. #document
  861. | <html>
  862. | <head>
  863. | <body>
  864. | <template>
  865. | content
  866. | <col>
  867. #data
  868. <body><template><i><menu>Foo</i>
  869. #errors
  870. #document
  871. | <html>
  872. | <head>
  873. | <body>
  874. | <template>
  875. | content
  876. | <i>
  877. | <menu>
  878. | <i>
  879. | "Foo"
  880. #data
  881. <body><template></div><div>Foo</div><template></template><tr></tr>
  882. #errors
  883. #document
  884. | <html>
  885. | <head>
  886. | <body>
  887. | <template>
  888. | content
  889. | <div>
  890. | "Foo"
  891. | <template>
  892. | content
  893. #data
  894. <body><div><template></div><tr><td>Foo</td></tr></template>
  895. #errors
  896. #document
  897. | <html>
  898. | <head>
  899. | <body>
  900. | <div>
  901. | <template>
  902. | content
  903. | <tr>
  904. | <td>
  905. | "Foo"
  906. #data
  907. <template></figcaption><sub><table></table>
  908. #errors
  909. #document
  910. | <html>
  911. | <head>
  912. | <template>
  913. | content
  914. | <sub>
  915. | <table>
  916. | <body>
  917. #data
  918. <template><template>
  919. #errors
  920. #document
  921. | <html>
  922. | <head>
  923. | <template>
  924. | content
  925. | <template>
  926. | content
  927. | <body>
  928. #data
  929. <template><div>
  930. #errors
  931. #document
  932. | <html>
  933. | <head>
  934. | <template>
  935. | content
  936. | <div>
  937. | <body>
  938. #data
  939. <template><template><div>
  940. #errors
  941. #document
  942. | <html>
  943. | <head>
  944. | <template>
  945. | content
  946. | <template>
  947. | content
  948. | <div>
  949. | <body>
  950. #data
  951. <template><template><script>var i
  952. #errors
  953. #document
  954. | <html>
  955. | <head>
  956. | <template>
  957. | content
  958. | <template>
  959. | content
  960. | <script>
  961. | "var i"
  962. | <body>
  963. #data
  964. <template><template><style>var i
  965. #errors
  966. #document
  967. | <html>
  968. | <head>
  969. | <template>
  970. | content
  971. | <template>
  972. | content
  973. | <style>
  974. | "var i"
  975. | <body>
  976. #data
  977. <template><svg><template>
  978. #errors
  979. #document
  980. | <html>
  981. | <head>
  982. | <template>
  983. | content
  984. | <svg svg>
  985. | <svg template>
  986. | <body>
  987. #data
  988. <dummy><template><span></dummy>
  989. #errors
  990. #document
  991. | <html>
  992. | <head>
  993. | <body>
  994. | <dummy>
  995. | <template>
  996. | content
  997. | <span>
  998. #data
  999. <body><table><tr><td><select><template>Foo</template><caption>A</table>
  1000. #errors
  1001. #document
  1002. | <html>
  1003. | <head>
  1004. | <body>
  1005. | <table>
  1006. | <tbody>
  1007. | <tr>
  1008. | <td>
  1009. | <select>
  1010. | <template>
  1011. | content
  1012. | "Foo"
  1013. | <caption>
  1014. | "A"
  1015. #data
  1016. <body></body><template>
  1017. #errors
  1018. #document
  1019. | <html>
  1020. | <head>
  1021. | <body>
  1022. | <template>
  1023. | content
  1024. #data
  1025. <head></head><template>
  1026. #errors
  1027. #document
  1028. | <html>
  1029. | <head>
  1030. | <template>
  1031. | content
  1032. | <body>
  1033. #data
  1034. <head></head><template>Foo</template>
  1035. #errors
  1036. #document
  1037. | <html>
  1038. | <head>
  1039. | <template>
  1040. | content
  1041. | "Foo"
  1042. | <body>