template.dat 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604
  1. #data
  2. <body><template>Hello</template>
  3. #errors
  4. no doctype
  5. #document
  6. | <html>
  7. | <head>
  8. | <body>
  9. | <template>
  10. | content
  11. | "Hello"
  12. #data
  13. <template>Hello</template>
  14. #errors
  15. no doctype
  16. #document
  17. | <html>
  18. | <head>
  19. | <template>
  20. | content
  21. | "Hello"
  22. | <body>
  23. #data
  24. <template></template><div></div>
  25. #errors
  26. no doctype
  27. #document
  28. | <html>
  29. | <head>
  30. | <template>
  31. | content
  32. | <body>
  33. | <div>
  34. #data
  35. <html><template>Hello</template>
  36. #errors
  37. no doctype
  38. #document
  39. | <html>
  40. | <head>
  41. | <template>
  42. | content
  43. | "Hello"
  44. | <body>
  45. #data
  46. <head><template><div></div></template></head>
  47. #errors
  48. no doctype
  49. #document
  50. | <html>
  51. | <head>
  52. | <template>
  53. | content
  54. | <div>
  55. | <body>
  56. #data
  57. <div><template><div><span></template><b>
  58. #errors
  59. * (1,6) missing DOCTYPE
  60. * (1,38) mismatched template end tag
  61. * (1,41) unexpected end of file
  62. #document
  63. | <html>
  64. | <head>
  65. | <body>
  66. | <div>
  67. | <template>
  68. | content
  69. | <div>
  70. | <span>
  71. | <b>
  72. #data
  73. <div><template></div>Hello
  74. #errors
  75. * (1,6) missing DOCTYPE
  76. * (1,22) unexpected token in template
  77. * (1,27) unexpected end of file in template
  78. * (1,27) unexpected end of file
  79. #document
  80. | <html>
  81. | <head>
  82. | <body>
  83. | <div>
  84. | <template>
  85. | content
  86. | "Hello"
  87. #data
  88. <div></template></div>
  89. #errors
  90. * (1,6) missing DOCTYPE
  91. * (1,17) unexpected template end tag
  92. #document
  93. | <html>
  94. | <head>
  95. | <body>
  96. | <div>
  97. #data
  98. <table><template></template></table>
  99. #errors
  100. no doctype
  101. #document
  102. | <html>
  103. | <head>
  104. | <body>
  105. | <table>
  106. | <template>
  107. | content
  108. #data
  109. <table><template></template></div>
  110. #errors
  111. * (1,8) missing DOCTYPE
  112. * (1,35) unexpected token in table - foster parenting
  113. * (1,35) unexpected end tag
  114. * (1,35) unexpected end of file
  115. #document
  116. | <html>
  117. | <head>
  118. | <body>
  119. | <table>
  120. | <template>
  121. | content
  122. #data
  123. <table><div><template></template></div>
  124. #errors
  125. * (1,8) missing DOCTYPE
  126. * (1,13) unexpected token in table - foster parenting
  127. * (1,40) unexpected token in table - foster parenting
  128. * (1,40) unexpected end of file
  129. #document
  130. | <html>
  131. | <head>
  132. | <body>
  133. | <div>
  134. | <template>
  135. | content
  136. | <table>
  137. #data
  138. <table><template></template><div></div>
  139. #errors
  140. no doctype
  141. bad div in table
  142. bad /div in table
  143. eof in table
  144. #document
  145. | <html>
  146. | <head>
  147. | <body>
  148. | <div>
  149. | <table>
  150. | <template>
  151. | content
  152. #data
  153. <table> <template></template></table>
  154. #errors
  155. no doctype
  156. #document
  157. | <html>
  158. | <head>
  159. | <body>
  160. | <table>
  161. | " "
  162. | <template>
  163. | content
  164. #data
  165. <table><tbody><template></template></tbody>
  166. #errors
  167. no doctype
  168. eof in table
  169. #document
  170. | <html>
  171. | <head>
  172. | <body>
  173. | <table>
  174. | <tbody>
  175. | <template>
  176. | content
  177. #data
  178. <table><tbody><template></tbody></template>
  179. #errors
  180. no doctype
  181. bad /tbody
  182. eof in table
  183. #document
  184. | <html>
  185. | <head>
  186. | <body>
  187. | <table>
  188. | <tbody>
  189. | <template>
  190. | content
  191. #data
  192. <table><tbody><template></template></tbody></table>
  193. #errors
  194. no doctype
  195. #document
  196. | <html>
  197. | <head>
  198. | <body>
  199. | <table>
  200. | <tbody>
  201. | <template>
  202. | content
  203. #data
  204. <table><thead><template></template></thead>
  205. #errors
  206. no doctype
  207. eof in table
  208. #document
  209. | <html>
  210. | <head>
  211. | <body>
  212. | <table>
  213. | <thead>
  214. | <template>
  215. | content
  216. #data
  217. <table><tfoot><template></template></tfoot>
  218. #errors
  219. no doctype
  220. eof in table
  221. #document
  222. | <html>
  223. | <head>
  224. | <body>
  225. | <table>
  226. | <tfoot>
  227. | <template>
  228. | content
  229. #data
  230. <select><template></template></select>
  231. #errors
  232. no doctype
  233. #document
  234. | <html>
  235. | <head>
  236. | <body>
  237. | <select>
  238. | <template>
  239. | content
  240. #data
  241. <select><template><option></option></template></select>
  242. #errors
  243. no doctype
  244. #document
  245. | <html>
  246. | <head>
  247. | <body>
  248. | <select>
  249. | <template>
  250. | content
  251. | <option>
  252. #data
  253. <template><option></option></select><option></option></template>
  254. #errors
  255. no doctype
  256. bad /select
  257. #document
  258. | <html>
  259. | <head>
  260. | <template>
  261. | content
  262. | <option>
  263. | <option>
  264. | <body>
  265. #data
  266. <select><template></template><option></select>
  267. #errors
  268. no doctype
  269. #document
  270. | <html>
  271. | <head>
  272. | <body>
  273. | <select>
  274. | <template>
  275. | content
  276. | <option>
  277. #data
  278. <select><option><template></template></select>
  279. #errors
  280. no doctype
  281. #document
  282. | <html>
  283. | <head>
  284. | <body>
  285. | <select>
  286. | <option>
  287. | <template>
  288. | content
  289. #data
  290. <select><template>
  291. #errors
  292. no doctype
  293. eof in template
  294. eof in select
  295. #document
  296. | <html>
  297. | <head>
  298. | <body>
  299. | <select>
  300. | <template>
  301. | content
  302. #data
  303. <select><option></option><template>
  304. #errors
  305. no doctype
  306. eof in template
  307. eof in select
  308. #document
  309. | <html>
  310. | <head>
  311. | <body>
  312. | <select>
  313. | <option>
  314. | <template>
  315. | content
  316. #data
  317. <select><option></option><template><option>
  318. #errors
  319. no doctype
  320. eof in template
  321. eof in select
  322. #document
  323. | <html>
  324. | <head>
  325. | <body>
  326. | <select>
  327. | <option>
  328. | <template>
  329. | content
  330. | <option>
  331. #data
  332. <table><thead><template><td></template></table>
  333. #errors
  334. * (1,8) missing DOCTYPE
  335. #document
  336. | <html>
  337. | <head>
  338. | <body>
  339. | <table>
  340. | <thead>
  341. | <template>
  342. | content
  343. | <td>
  344. #data
  345. <table><template><thead></template></table>
  346. #errors
  347. no doctype
  348. #document
  349. | <html>
  350. | <head>
  351. | <body>
  352. | <table>
  353. | <template>
  354. | content
  355. | <thead>
  356. #data
  357. <body><table><template><td></tr><div></template></table>
  358. #errors
  359. no doctype
  360. bad </tr>
  361. missing </div>
  362. #document
  363. | <html>
  364. | <head>
  365. | <body>
  366. | <table>
  367. | <template>
  368. | content
  369. | <td>
  370. | <div>
  371. #data
  372. <table><template><thead></template></thead></table>
  373. #errors
  374. no doctype
  375. bad /thead after /template
  376. #document
  377. | <html>
  378. | <head>
  379. | <body>
  380. | <table>
  381. | <template>
  382. | content
  383. | <thead>
  384. #data
  385. <table><thead><template><tr></template></table>
  386. #errors
  387. no doctype
  388. #document
  389. | <html>
  390. | <head>
  391. | <body>
  392. | <table>
  393. | <thead>
  394. | <template>
  395. | content
  396. | <tr>
  397. #data
  398. <table><template><tr></template></table>
  399. #errors
  400. no doctype
  401. #document
  402. | <html>
  403. | <head>
  404. | <body>
  405. | <table>
  406. | <template>
  407. | content
  408. | <tr>
  409. #data
  410. <table><tr><template><td>
  411. #errors
  412. no doctype
  413. eof in template
  414. eof in table
  415. #document
  416. | <html>
  417. | <head>
  418. | <body>
  419. | <table>
  420. | <tbody>
  421. | <tr>
  422. | <template>
  423. | content
  424. | <td>
  425. #data
  426. <table><template><tr><template><td></template></tr></template></table>
  427. #errors
  428. no doctype
  429. #document
  430. | <html>
  431. | <head>
  432. | <body>
  433. | <table>
  434. | <template>
  435. | content
  436. | <tr>
  437. | <template>
  438. | content
  439. | <td>
  440. #data
  441. <table><template><tr><template><td></td></template></tr></template></table>
  442. #errors
  443. no doctype
  444. #document
  445. | <html>
  446. | <head>
  447. | <body>
  448. | <table>
  449. | <template>
  450. | content
  451. | <tr>
  452. | <template>
  453. | content
  454. | <td>
  455. #data
  456. <table><template><td></template>
  457. #errors
  458. no doctype
  459. eof in table
  460. #document
  461. | <html>
  462. | <head>
  463. | <body>
  464. | <table>
  465. | <template>
  466. | content
  467. | <td>
  468. #data
  469. <body><template><td></td></template>
  470. #errors
  471. no doctype
  472. #document
  473. | <html>
  474. | <head>
  475. | <body>
  476. | <template>
  477. | content
  478. | <td>
  479. #data
  480. <body><template><template><tr></tr></template><td></td></template>
  481. #errors
  482. no doctype
  483. #document
  484. | <html>
  485. | <head>
  486. | <body>
  487. | <template>
  488. | content
  489. | <template>
  490. | content
  491. | <tr>
  492. | <td>
  493. #data
  494. <table><colgroup><template><col>
  495. #errors
  496. no doctype
  497. eof in template
  498. eof in table
  499. #document
  500. | <html>
  501. | <head>
  502. | <body>
  503. | <table>
  504. | <colgroup>
  505. | <template>
  506. | content
  507. | <col>
  508. #data
  509. <frameset><template><frame></frame></template></frameset>
  510. #errors
  511. * (1,11) missing DOCTYPE
  512. * (1,21) unexpected start tag token
  513. * (1,36) unexpected end tag token
  514. * (1,47) unexpected end tag token
  515. #document
  516. | <html>
  517. | <head>
  518. | <frameset>
  519. | <frame>
  520. #data
  521. <template><frame></frame></frameset><frame></frame></template>
  522. #errors
  523. * (1,11) missing DOCTYPE
  524. * (1,18) unexpected start tag
  525. * (1,26) unexpected end tag
  526. * (1,37) unexpected end tag
  527. * (1,44) unexpected start tag
  528. * (1,52) unexpected end tag
  529. #document
  530. | <html>
  531. | <head>
  532. | <template>
  533. | content
  534. | <body>
  535. #data
  536. <template><div><frameset><span></span></div><span></span></template>
  537. #errors
  538. no doctype
  539. bad frameset
  540. #document
  541. | <html>
  542. | <head>
  543. | <template>
  544. | content
  545. | <div>
  546. | <span>
  547. | <span>
  548. | <body>
  549. #data
  550. <body><template><div><frameset><span></span></div><span></span></template></body>
  551. #errors
  552. no doctype
  553. bad frameset
  554. #document
  555. | <html>
  556. | <head>
  557. | <body>
  558. | <template>
  559. | content
  560. | <div>
  561. | <span>
  562. | <span>
  563. #data
  564. <body><template><script>var i = 1;</script><td></td></template>
  565. #errors
  566. no doctype
  567. #document
  568. | <html>
  569. | <head>
  570. | <body>
  571. | <template>
  572. | content
  573. | <script>
  574. | "var i = 1;"
  575. | <td>
  576. #data
  577. <body><template><tr><div></div></tr></template>
  578. #errors
  579. no doctype
  580. foster-parented div
  581. foster-parented /div
  582. #document
  583. | <html>
  584. | <head>
  585. | <body>
  586. | <template>
  587. | content
  588. | <tr>
  589. | <div>
  590. #data
  591. <body><template><tr></tr><td></td></template>
  592. #errors
  593. no doctype
  594. unexpected <td>
  595. #document
  596. | <html>
  597. | <head>
  598. | <body>
  599. | <template>
  600. | content
  601. | <tr>
  602. | <tr>
  603. | <td>
  604. #data
  605. <body><template><td></td></tr><td></td></template>
  606. #errors
  607. no doctype
  608. bad </tr>
  609. #document
  610. | <html>
  611. | <head>
  612. | <body>
  613. | <template>
  614. | content
  615. | <td>
  616. | <td>
  617. #data
  618. <body><template><td></td><tbody><td></td></template>
  619. #errors
  620. no doctype
  621. bad <tbody>
  622. #document
  623. | <html>
  624. | <head>
  625. | <body>
  626. | <template>
  627. | content
  628. | <td>
  629. | <td>
  630. #data
  631. <body><template><td></td><caption></caption><td></td></template>
  632. #errors
  633. * (1,7) missing DOCTYPE
  634. * (1,35) unexpected start tag in table row
  635. * (1,45) unexpected end tag in table row
  636. #document
  637. | <html>
  638. | <head>
  639. | <body>
  640. | <template>
  641. | content
  642. | <td>
  643. | <td>
  644. #data
  645. <body><template><td></td><colgroup></caption><td></td></template>
  646. #errors
  647. * (1,7) missing DOCTYPE
  648. * (1,36) unexpected start tag in table row
  649. * (1,46) unexpected end tag in table row
  650. #document
  651. | <html>
  652. | <head>
  653. | <body>
  654. | <template>
  655. | content
  656. | <td>
  657. | <td>
  658. #data
  659. <body><template><td></td></table><td></td></template>
  660. #errors
  661. no doctype
  662. bad </table>
  663. #document
  664. | <html>
  665. | <head>
  666. | <body>
  667. | <template>
  668. | content
  669. | <td>
  670. | <td>
  671. #data
  672. <body><template><tr></tr><tbody><tr></tr></template>
  673. #errors
  674. no doctype
  675. bad <tbody>
  676. #document
  677. | <html>
  678. | <head>
  679. | <body>
  680. | <template>
  681. | content
  682. | <tr>
  683. | <tr>
  684. #data
  685. <body><template><tr></tr><caption><tr></tr></template>
  686. #errors
  687. no doctype
  688. bad <caption>
  689. #document
  690. | <html>
  691. | <head>
  692. | <body>
  693. | <template>
  694. | content
  695. | <tr>
  696. | <tr>
  697. #data
  698. <body><template><tr></tr></table><tr></tr></template>
  699. #errors
  700. no doctype
  701. bad </table>
  702. #document
  703. | <html>
  704. | <head>
  705. | <body>
  706. | <template>
  707. | content
  708. | <tr>
  709. | <tr>
  710. #data
  711. <body><template><thead></thead><caption></caption><tbody></tbody></template>
  712. #errors
  713. no doctype
  714. #document
  715. | <html>
  716. | <head>
  717. | <body>
  718. | <template>
  719. | content
  720. | <thead>
  721. | <caption>
  722. | <tbody>
  723. #data
  724. <body><template><thead></thead></table><tbody></tbody></template></body>
  725. #errors
  726. no doctype
  727. bad </table>
  728. #document
  729. | <html>
  730. | <head>
  731. | <body>
  732. | <template>
  733. | content
  734. | <thead>
  735. | <tbody>
  736. #data
  737. <body><template><div><tr></tr></div></template>
  738. #errors
  739. no doctype
  740. bad tr
  741. bad /tr
  742. #document
  743. | <html>
  744. | <head>
  745. | <body>
  746. | <template>
  747. | content
  748. | <div>
  749. #data
  750. <body><template><em>Hello</em></template>
  751. #errors
  752. no doctype
  753. #document
  754. | <html>
  755. | <head>
  756. | <body>
  757. | <template>
  758. | content
  759. | <em>
  760. | "Hello"
  761. #data
  762. <body><template><!--comment--></template>
  763. #errors
  764. no doctype
  765. #document
  766. | <html>
  767. | <head>
  768. | <body>
  769. | <template>
  770. | content
  771. | <!-- comment -->
  772. #data
  773. <body><template><style></style><td></td></template>
  774. #errors
  775. no doctype
  776. #document
  777. | <html>
  778. | <head>
  779. | <body>
  780. | <template>
  781. | content
  782. | <style>
  783. | <td>
  784. #data
  785. <body><template><meta><td></td></template>
  786. #errors
  787. no doctype
  788. #document
  789. | <html>
  790. | <head>
  791. | <body>
  792. | <template>
  793. | content
  794. | <meta>
  795. | <td>
  796. #data
  797. <body><template><link><td></td></template>
  798. #errors
  799. no doctype
  800. #document
  801. | <html>
  802. | <head>
  803. | <body>
  804. | <template>
  805. | content
  806. | <link>
  807. | <td>
  808. #data
  809. <body><template><template><tr></tr></template><td></td></template>
  810. #errors
  811. no doctype
  812. #document
  813. | <html>
  814. | <head>
  815. | <body>
  816. | <template>
  817. | content
  818. | <template>
  819. | content
  820. | <tr>
  821. | <td>
  822. #data
  823. <body><table><colgroup><template><col></col></template></colgroup></table></body>
  824. #errors
  825. no doctype
  826. bad /col
  827. #document
  828. | <html>
  829. | <head>
  830. | <body>
  831. | <table>
  832. | <colgroup>
  833. | <template>
  834. | content
  835. | <col>
  836. #data
  837. <body a=b><template><div></div><body c=d><div></div></body></template></body>
  838. #errors
  839. no doctype
  840. bad <body>
  841. bad </body>
  842. #document
  843. | <html>
  844. | <head>
  845. | <body>
  846. | a="b"
  847. | <template>
  848. | content
  849. | <div>
  850. | <div>
  851. #data
  852. <html a=b><template><div><html b=c><span></template>
  853. #errors
  854. no doctype
  855. bad <html>
  856. missing end tags in template
  857. #document
  858. | <html>
  859. | a="b"
  860. | <head>
  861. | <template>
  862. | content
  863. | <div>
  864. | <span>
  865. | <body>
  866. #data
  867. <html a=b><template><col></col><html b=c><col></col></template>
  868. #errors
  869. no doctype
  870. bad /col
  871. bad html
  872. bad /col
  873. #document
  874. | <html>
  875. | a="b"
  876. | <head>
  877. | <template>
  878. | content
  879. | <col>
  880. | <col>
  881. | <body>
  882. #data
  883. <html a=b><template><frame></frame><html b=c><frame></frame></template>
  884. #errors
  885. no doctype
  886. bad frame
  887. bad /frame
  888. bad html
  889. bad frame
  890. bad /frame
  891. #document
  892. | <html>
  893. | a="b"
  894. | <head>
  895. | <template>
  896. | content
  897. | <body>
  898. #data
  899. <body><template><tr></tr><template></template><td></td></template>
  900. #errors
  901. no doctype
  902. unexpected <td>
  903. #document
  904. | <html>
  905. | <head>
  906. | <body>
  907. | <template>
  908. | content
  909. | <tr>
  910. | <template>
  911. | content
  912. | <tr>
  913. | <td>
  914. #data
  915. <body><template><thead></thead><template><tr></tr></template><tr></tr><tfoot></tfoot></template>
  916. #errors
  917. no doctype
  918. #document
  919. | <html>
  920. | <head>
  921. | <body>
  922. | <template>
  923. | content
  924. | <thead>
  925. | <template>
  926. | content
  927. | <tr>
  928. | <tbody>
  929. | <tr>
  930. | <tfoot>
  931. #data
  932. <body><template><template><b><template></template></template>text</template>
  933. #errors
  934. no doctype
  935. missing </b>
  936. #document
  937. | <html>
  938. | <head>
  939. | <body>
  940. | <template>
  941. | content
  942. | <template>
  943. | content
  944. | <b>
  945. | <template>
  946. | content
  947. | "text"
  948. #data
  949. <body><template><col><colgroup>
  950. #errors
  951. no doctype
  952. bad colgroup
  953. eof in template
  954. #document
  955. | <html>
  956. | <head>
  957. | <body>
  958. | <template>
  959. | content
  960. | <col>
  961. #data
  962. <body><template><col></colgroup>
  963. #errors
  964. no doctype
  965. bogus /colgroup
  966. eof in template
  967. #document
  968. | <html>
  969. | <head>
  970. | <body>
  971. | <template>
  972. | content
  973. | <col>
  974. #data
  975. <body><template><col><colgroup></template></body>
  976. #errors
  977. no doctype
  978. bad colgroup
  979. #document
  980. | <html>
  981. | <head>
  982. | <body>
  983. | <template>
  984. | content
  985. | <col>
  986. #data
  987. <body><template><col><div>
  988. #errors
  989. * (1,7) missing DOCTYPE
  990. * (1,27) unexpected token
  991. * (1,27) unexpected end of file in template
  992. #document
  993. | <html>
  994. | <head>
  995. | <body>
  996. | <template>
  997. | content
  998. | <col>
  999. #data
  1000. <body><template><col></div>
  1001. #errors
  1002. no doctype
  1003. bad /div
  1004. eof in template
  1005. #document
  1006. | <html>
  1007. | <head>
  1008. | <body>
  1009. | <template>
  1010. | content
  1011. | <col>
  1012. #data
  1013. <body><template><col>Hello
  1014. #errors
  1015. no doctype
  1016. unexpected text
  1017. eof in template
  1018. #document
  1019. | <html>
  1020. | <head>
  1021. | <body>
  1022. | <template>
  1023. | content
  1024. | <col>
  1025. #data
  1026. <body><template><i><menu>Foo</i>
  1027. #errors
  1028. no doctype
  1029. mising /menu
  1030. eof in template
  1031. #document
  1032. | <html>
  1033. | <head>
  1034. | <body>
  1035. | <template>
  1036. | content
  1037. | <i>
  1038. | <menu>
  1039. | <i>
  1040. | "Foo"
  1041. #data
  1042. <body><template></div><div>Foo</div><template></template><tr></tr>
  1043. #errors
  1044. no doctype
  1045. bogus /div
  1046. bogus tr
  1047. bogus /tr
  1048. eof in template
  1049. #document
  1050. | <html>
  1051. | <head>
  1052. | <body>
  1053. | <template>
  1054. | content
  1055. | <div>
  1056. | "Foo"
  1057. | <template>
  1058. | content
  1059. #data
  1060. <body><div><template></div><tr><td>Foo</td></tr></template>
  1061. #errors
  1062. * (1,7) missing DOCTYPE
  1063. * (1,28) unexpected token in template
  1064. * (1,60) unexpected end of file
  1065. #document
  1066. | <html>
  1067. | <head>
  1068. | <body>
  1069. | <div>
  1070. | <template>
  1071. | content
  1072. | <tr>
  1073. | <td>
  1074. | "Foo"
  1075. #data
  1076. <template></figcaption><sub><table></table>
  1077. #errors
  1078. no doctype
  1079. bad /figcaption
  1080. eof in template
  1081. #document
  1082. | <html>
  1083. | <head>
  1084. | <template>
  1085. | content
  1086. | <sub>
  1087. | <table>
  1088. | <body>
  1089. #data
  1090. <template><template>
  1091. #errors
  1092. no doctype
  1093. eof in template
  1094. eof in template
  1095. #document
  1096. | <html>
  1097. | <head>
  1098. | <template>
  1099. | content
  1100. | <template>
  1101. | content
  1102. | <body>
  1103. #data
  1104. <template><div>
  1105. #errors
  1106. no doctype
  1107. eof in template
  1108. #document
  1109. | <html>
  1110. | <head>
  1111. | <template>
  1112. | content
  1113. | <div>
  1114. | <body>
  1115. #data
  1116. <template><template><div>
  1117. #errors
  1118. no doctype
  1119. eof in template
  1120. eof in template
  1121. #document
  1122. | <html>
  1123. | <head>
  1124. | <template>
  1125. | content
  1126. | <template>
  1127. | content
  1128. | <div>
  1129. | <body>
  1130. #data
  1131. <template><template><table>
  1132. #errors
  1133. no doctype
  1134. eof in template
  1135. eof in template
  1136. #document
  1137. | <html>
  1138. | <head>
  1139. | <template>
  1140. | content
  1141. | <template>
  1142. | content
  1143. | <table>
  1144. | <body>
  1145. #data
  1146. <template><template><tbody>
  1147. #errors
  1148. no doctype
  1149. eof in template
  1150. eof in template
  1151. #document
  1152. | <html>
  1153. | <head>
  1154. | <template>
  1155. | content
  1156. | <template>
  1157. | content
  1158. | <tbody>
  1159. | <body>
  1160. #data
  1161. <template><template><tr>
  1162. #errors
  1163. no doctype
  1164. eof in template
  1165. eof in template
  1166. #document
  1167. | <html>
  1168. | <head>
  1169. | <template>
  1170. | content
  1171. | <template>
  1172. | content
  1173. | <tr>
  1174. | <body>
  1175. #data
  1176. <template><template><td>
  1177. #errors
  1178. no doctype
  1179. eof in template
  1180. eof in template
  1181. #document
  1182. | <html>
  1183. | <head>
  1184. | <template>
  1185. | content
  1186. | <template>
  1187. | content
  1188. | <td>
  1189. | <body>
  1190. #data
  1191. <template><template><caption>
  1192. #errors
  1193. no doctype
  1194. eof in template
  1195. eof in template
  1196. #document
  1197. | <html>
  1198. | <head>
  1199. | <template>
  1200. | content
  1201. | <template>
  1202. | content
  1203. | <caption>
  1204. | <body>
  1205. #data
  1206. <template><template><colgroup>
  1207. #errors
  1208. no doctype
  1209. eof in template
  1210. eof in template
  1211. #document
  1212. | <html>
  1213. | <head>
  1214. | <template>
  1215. | content
  1216. | <template>
  1217. | content
  1218. | <colgroup>
  1219. | <body>
  1220. #data
  1221. <template><template><col>
  1222. #errors
  1223. no doctype
  1224. eof in template
  1225. eof in template
  1226. #document
  1227. | <html>
  1228. | <head>
  1229. | <template>
  1230. | content
  1231. | <template>
  1232. | content
  1233. | <col>
  1234. | <body>
  1235. #data
  1236. <template><template><tbody><select>
  1237. #errors
  1238. * (1,11) missing DOCTYPE
  1239. * (1,36) unexpected token in table - foster parenting
  1240. * (1,36) unexpected end of file in template
  1241. * (1,36) unexpected end of file in template
  1242. #document
  1243. | <html>
  1244. | <head>
  1245. | <template>
  1246. | content
  1247. | <template>
  1248. | content
  1249. | <tbody>
  1250. | <select>
  1251. | <body>
  1252. #data
  1253. <template><template><table>Foo
  1254. #errors
  1255. no doctype
  1256. foster-parenting text F
  1257. foster-parenting text o
  1258. foster-parenting text o
  1259. eof
  1260. eof
  1261. #document
  1262. | <html>
  1263. | <head>
  1264. | <template>
  1265. | content
  1266. | <template>
  1267. | content
  1268. | "Foo"
  1269. | <table>
  1270. | <body>
  1271. #data
  1272. <template><template><frame>
  1273. #errors
  1274. no doctype
  1275. bad tag
  1276. eof
  1277. eof
  1278. #document
  1279. | <html>
  1280. | <head>
  1281. | <template>
  1282. | content
  1283. | <template>
  1284. | content
  1285. | <body>
  1286. #data
  1287. <template><template><script>var i
  1288. #errors
  1289. no doctype
  1290. eof in script
  1291. eof in template
  1292. eof in template
  1293. #document
  1294. | <html>
  1295. | <head>
  1296. | <template>
  1297. | content
  1298. | <template>
  1299. | content
  1300. | <script>
  1301. | "var i"
  1302. | <body>
  1303. #data
  1304. <template><template><style>var i
  1305. #errors
  1306. no doctype
  1307. eof in style
  1308. eof in template
  1309. eof in template
  1310. #document
  1311. | <html>
  1312. | <head>
  1313. | <template>
  1314. | content
  1315. | <template>
  1316. | content
  1317. | <style>
  1318. | "var i"
  1319. | <body>
  1320. #data
  1321. <template><table></template><body><span>Foo
  1322. #errors
  1323. no doctype
  1324. missing /table
  1325. bad eof
  1326. #document
  1327. | <html>
  1328. | <head>
  1329. | <template>
  1330. | content
  1331. | <table>
  1332. | <body>
  1333. | <span>
  1334. | "Foo"
  1335. #data
  1336. <template><td></template><body><span>Foo
  1337. #errors
  1338. no doctype
  1339. bad eof
  1340. #document
  1341. | <html>
  1342. | <head>
  1343. | <template>
  1344. | content
  1345. | <td>
  1346. | <body>
  1347. | <span>
  1348. | "Foo"
  1349. #data
  1350. <template><object></template><body><span>Foo
  1351. #errors
  1352. no doctype
  1353. missing /object
  1354. bad eof
  1355. #document
  1356. | <html>
  1357. | <head>
  1358. | <template>
  1359. | content
  1360. | <object>
  1361. | <body>
  1362. | <span>
  1363. | "Foo"
  1364. #data
  1365. <template><svg><template>
  1366. #errors
  1367. no doctype
  1368. eof in template
  1369. #document
  1370. | <html>
  1371. | <head>
  1372. | <template>
  1373. | content
  1374. | <svg svg>
  1375. | <svg template>
  1376. | <body>
  1377. #data
  1378. <template><svg><foo><template><foreignObject><div></template><div>
  1379. #errors
  1380. no doctype
  1381. ugly template closure
  1382. bad eof
  1383. #document
  1384. | <html>
  1385. | <head>
  1386. | <template>
  1387. | content
  1388. | <svg svg>
  1389. | <svg foo>
  1390. | <svg template>
  1391. | <svg foreignObject>
  1392. | <div>
  1393. | <body>
  1394. | <div>
  1395. #data
  1396. <dummy><template><span></dummy>
  1397. #errors
  1398. no doctype
  1399. bad end tag </dummy>
  1400. eof in template
  1401. eof in dummy
  1402. #document
  1403. | <html>
  1404. | <head>
  1405. | <body>
  1406. | <dummy>
  1407. | <template>
  1408. | content
  1409. | <span>
  1410. #data
  1411. <body><table><tr><td><select><template>Foo</template><caption>A</table>
  1412. #errors
  1413. no doctype
  1414. (1,62): unexpected-caption-in-select-in-table
  1415. #document
  1416. | <html>
  1417. | <head>
  1418. | <body>
  1419. | <table>
  1420. | <tbody>
  1421. | <tr>
  1422. | <td>
  1423. | <select>
  1424. | <template>
  1425. | content
  1426. | "Foo"
  1427. | <caption>
  1428. | "A"
  1429. #data
  1430. <body></body><template>
  1431. #errors
  1432. no doctype
  1433. (1,23): template-after-body
  1434. (1,24): eof-in-template
  1435. #document
  1436. | <html>
  1437. | <head>
  1438. | <body>
  1439. | <template>
  1440. | content
  1441. #data
  1442. <head></head><template>
  1443. #errors
  1444. no doctype
  1445. (1,23): template-after-head
  1446. (1,24): eof-in-template
  1447. #document
  1448. | <html>
  1449. | <head>
  1450. | <template>
  1451. | content
  1452. | <body>
  1453. #data
  1454. <head></head><template>Foo</template>
  1455. #errors
  1456. no doctype
  1457. (1,23): template-after-head
  1458. #document
  1459. | <html>
  1460. | <head>
  1461. | <template>
  1462. | content
  1463. | "Foo"
  1464. | <body>
  1465. #data
  1466. <!DOCTYPE HTML><dummy><table><template><table><template><table><script>
  1467. #errors
  1468. eof script
  1469. eof template
  1470. eof template
  1471. eof table
  1472. #document
  1473. | <!DOCTYPE html>
  1474. | <html>
  1475. | <head>
  1476. | <body>
  1477. | <dummy>
  1478. | <table>
  1479. | <template>
  1480. | content
  1481. | <table>
  1482. | <template>
  1483. | content
  1484. | <table>
  1485. | <script>
  1486. #data
  1487. <template><a><table><a>
  1488. #errors
  1489. #document
  1490. | <html>
  1491. | <head>
  1492. | <template>
  1493. | content
  1494. | <a>
  1495. | <a>
  1496. | <table>
  1497. | <body>