blocks.dat 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. #data
  2. <!doctype html><p>foo<address>bar<p>baz
  3. #errors
  4. (1,39): expected-closing-tag-but-got-eof
  5. 30: Unclosed element “address”.
  6. #document
  7. | <!DOCTYPE html>
  8. | <html>
  9. | <head>
  10. | <body>
  11. | <p>
  12. | "foo"
  13. | <address>
  14. | "bar"
  15. | <p>
  16. | "baz"
  17. #data
  18. <!doctype html><address><p>foo</address>bar
  19. #errors
  20. #document
  21. | <!DOCTYPE html>
  22. | <html>
  23. | <head>
  24. | <body>
  25. | <address>
  26. | <p>
  27. | "foo"
  28. | "bar"
  29. #data
  30. <!doctype html><p>foo<article>bar<p>baz
  31. #errors
  32. (1,39): expected-closing-tag-but-got-eof
  33. 30: Unclosed element “article”.
  34. #document
  35. | <!DOCTYPE html>
  36. | <html>
  37. | <head>
  38. | <body>
  39. | <p>
  40. | "foo"
  41. | <article>
  42. | "bar"
  43. | <p>
  44. | "baz"
  45. #data
  46. <!doctype html><article><p>foo</article>bar
  47. #errors
  48. #document
  49. | <!DOCTYPE html>
  50. | <html>
  51. | <head>
  52. | <body>
  53. | <article>
  54. | <p>
  55. | "foo"
  56. | "bar"
  57. #data
  58. <!doctype html><p>foo<aside>bar<p>baz
  59. #errors
  60. (1,37): expected-closing-tag-but-got-eof
  61. 28: Unclosed element “aside”.
  62. #document
  63. | <!DOCTYPE html>
  64. | <html>
  65. | <head>
  66. | <body>
  67. | <p>
  68. | "foo"
  69. | <aside>
  70. | "bar"
  71. | <p>
  72. | "baz"
  73. #data
  74. <!doctype html><aside><p>foo</aside>bar
  75. #errors
  76. #document
  77. | <!DOCTYPE html>
  78. | <html>
  79. | <head>
  80. | <body>
  81. | <aside>
  82. | <p>
  83. | "foo"
  84. | "bar"
  85. #data
  86. <!doctype html><p>foo<blockquote>bar<p>baz
  87. #errors
  88. (1,42): expected-closing-tag-but-got-eof
  89. 33: Unclosed element “blockquote”.
  90. #document
  91. | <!DOCTYPE html>
  92. | <html>
  93. | <head>
  94. | <body>
  95. | <p>
  96. | "foo"
  97. | <blockquote>
  98. | "bar"
  99. | <p>
  100. | "baz"
  101. #data
  102. <!doctype html><blockquote><p>foo</blockquote>bar
  103. #errors
  104. #document
  105. | <!DOCTYPE html>
  106. | <html>
  107. | <head>
  108. | <body>
  109. | <blockquote>
  110. | <p>
  111. | "foo"
  112. | "bar"
  113. #data
  114. <!doctype html><p>foo<center>bar<p>baz
  115. #errors
  116. (1,38): expected-closing-tag-but-got-eof
  117. 29: Unclosed element “center”.
  118. #document
  119. | <!DOCTYPE html>
  120. | <html>
  121. | <head>
  122. | <body>
  123. | <p>
  124. | "foo"
  125. | <center>
  126. | "bar"
  127. | <p>
  128. | "baz"
  129. #data
  130. <!doctype html><center><p>foo</center>bar
  131. #errors
  132. #document
  133. | <!DOCTYPE html>
  134. | <html>
  135. | <head>
  136. | <body>
  137. | <center>
  138. | <p>
  139. | "foo"
  140. | "bar"
  141. #data
  142. <!doctype html><p>foo<details>bar<p>baz
  143. #errors
  144. (1,39): expected-closing-tag-but-got-eof
  145. 30: Unclosed element “details”.
  146. #document
  147. | <!DOCTYPE html>
  148. | <html>
  149. | <head>
  150. | <body>
  151. | <p>
  152. | "foo"
  153. | <details>
  154. | "bar"
  155. | <p>
  156. | "baz"
  157. #data
  158. <!doctype html><details><p>foo</details>bar
  159. #errors
  160. #document
  161. | <!DOCTYPE html>
  162. | <html>
  163. | <head>
  164. | <body>
  165. | <details>
  166. | <p>
  167. | "foo"
  168. | "bar"
  169. #data
  170. <!doctype html><p>foo<dialog>bar<p>baz
  171. #errors
  172. (1,38): expected-closing-tag-but-got-eof
  173. 29: Unclosed element “dialog”.
  174. #document
  175. | <!DOCTYPE html>
  176. | <html>
  177. | <head>
  178. | <body>
  179. | <p>
  180. | "foo"
  181. | <dialog>
  182. | "bar"
  183. | <p>
  184. | "baz"
  185. #data
  186. <!doctype html><dialog><p>foo</dialog>bar
  187. #errors
  188. #document
  189. | <!DOCTYPE html>
  190. | <html>
  191. | <head>
  192. | <body>
  193. | <dialog>
  194. | <p>
  195. | "foo"
  196. | "bar"
  197. #data
  198. <!doctype html><p>foo<dir>bar<p>baz
  199. #errors
  200. (1,35): expected-closing-tag-but-got-eof
  201. 26: Unclosed element “dir”.
  202. #document
  203. | <!DOCTYPE html>
  204. | <html>
  205. | <head>
  206. | <body>
  207. | <p>
  208. | "foo"
  209. | <dir>
  210. | "bar"
  211. | <p>
  212. | "baz"
  213. #data
  214. <!doctype html><dir><p>foo</dir>bar
  215. #errors
  216. #document
  217. | <!DOCTYPE html>
  218. | <html>
  219. | <head>
  220. | <body>
  221. | <dir>
  222. | <p>
  223. | "foo"
  224. | "bar"
  225. #data
  226. <!doctype html><p>foo<div>bar<p>baz
  227. #errors
  228. (1,35): expected-closing-tag-but-got-eof
  229. 26: Unclosed element “div”.
  230. #document
  231. | <!DOCTYPE html>
  232. | <html>
  233. | <head>
  234. | <body>
  235. | <p>
  236. | "foo"
  237. | <div>
  238. | "bar"
  239. | <p>
  240. | "baz"
  241. #data
  242. <!doctype html><div><p>foo</div>bar
  243. #errors
  244. #document
  245. | <!DOCTYPE html>
  246. | <html>
  247. | <head>
  248. | <body>
  249. | <div>
  250. | <p>
  251. | "foo"
  252. | "bar"
  253. #data
  254. <!doctype html><p>foo<dl>bar<p>baz
  255. #errors
  256. (1,34): expected-closing-tag-but-got-eof
  257. 25: Unclosed element “dl”.
  258. #document
  259. | <!DOCTYPE html>
  260. | <html>
  261. | <head>
  262. | <body>
  263. | <p>
  264. | "foo"
  265. | <dl>
  266. | "bar"
  267. | <p>
  268. | "baz"
  269. #data
  270. <!doctype html><dl><p>foo</dl>bar
  271. #errors
  272. #document
  273. | <!DOCTYPE html>
  274. | <html>
  275. | <head>
  276. | <body>
  277. | <dl>
  278. | <p>
  279. | "foo"
  280. | "bar"
  281. #data
  282. <!doctype html><p>foo<fieldset>bar<p>baz
  283. #errors
  284. (1,40): expected-closing-tag-but-got-eof
  285. 31: Unclosed element “fieldset”.
  286. #document
  287. | <!DOCTYPE html>
  288. | <html>
  289. | <head>
  290. | <body>
  291. | <p>
  292. | "foo"
  293. | <fieldset>
  294. | "bar"
  295. | <p>
  296. | "baz"
  297. #data
  298. <!doctype html><fieldset><p>foo</fieldset>bar
  299. #errors
  300. #document
  301. | <!DOCTYPE html>
  302. | <html>
  303. | <head>
  304. | <body>
  305. | <fieldset>
  306. | <p>
  307. | "foo"
  308. | "bar"
  309. #data
  310. <!doctype html><p>foo<figcaption>bar<p>baz
  311. #errors
  312. (1,42): expected-closing-tag-but-got-eof
  313. 33: Unclosed element “figcaption”.
  314. #document
  315. | <!DOCTYPE html>
  316. | <html>
  317. | <head>
  318. | <body>
  319. | <p>
  320. | "foo"
  321. | <figcaption>
  322. | "bar"
  323. | <p>
  324. | "baz"
  325. #data
  326. <!doctype html><figcaption><p>foo</figcaption>bar
  327. #errors
  328. #document
  329. | <!DOCTYPE html>
  330. | <html>
  331. | <head>
  332. | <body>
  333. | <figcaption>
  334. | <p>
  335. | "foo"
  336. | "bar"
  337. #data
  338. <!doctype html><p>foo<figure>bar<p>baz
  339. #errors
  340. (1,38): expected-closing-tag-but-got-eof
  341. 29: Unclosed element “figure”.
  342. #document
  343. | <!DOCTYPE html>
  344. | <html>
  345. | <head>
  346. | <body>
  347. | <p>
  348. | "foo"
  349. | <figure>
  350. | "bar"
  351. | <p>
  352. | "baz"
  353. #data
  354. <!doctype html><figure><p>foo</figure>bar
  355. #errors
  356. #document
  357. | <!DOCTYPE html>
  358. | <html>
  359. | <head>
  360. | <body>
  361. | <figure>
  362. | <p>
  363. | "foo"
  364. | "bar"
  365. #data
  366. <!doctype html><p>foo<footer>bar<p>baz
  367. #errors
  368. (1,38): expected-closing-tag-but-got-eof
  369. 29: Unclosed element “footer”.
  370. #document
  371. | <!DOCTYPE html>
  372. | <html>
  373. | <head>
  374. | <body>
  375. | <p>
  376. | "foo"
  377. | <footer>
  378. | "bar"
  379. | <p>
  380. | "baz"
  381. #data
  382. <!doctype html><footer><p>foo</footer>bar
  383. #errors
  384. #document
  385. | <!DOCTYPE html>
  386. | <html>
  387. | <head>
  388. | <body>
  389. | <footer>
  390. | <p>
  391. | "foo"
  392. | "bar"
  393. #data
  394. <!doctype html><p>foo<header>bar<p>baz
  395. #errors
  396. (1,38): expected-closing-tag-but-got-eof
  397. 29: Unclosed element “header”.
  398. #document
  399. | <!DOCTYPE html>
  400. | <html>
  401. | <head>
  402. | <body>
  403. | <p>
  404. | "foo"
  405. | <header>
  406. | "bar"
  407. | <p>
  408. | "baz"
  409. #data
  410. <!doctype html><header><p>foo</header>bar
  411. #errors
  412. #document
  413. | <!DOCTYPE html>
  414. | <html>
  415. | <head>
  416. | <body>
  417. | <header>
  418. | <p>
  419. | "foo"
  420. | "bar"
  421. #data
  422. <!doctype html><p>foo<hgroup>bar<p>baz
  423. #errors
  424. (1,38): expected-closing-tag-but-got-eof
  425. 29: Unclosed element “hgroup”.
  426. #document
  427. | <!DOCTYPE html>
  428. | <html>
  429. | <head>
  430. | <body>
  431. | <p>
  432. | "foo"
  433. | <hgroup>
  434. | "bar"
  435. | <p>
  436. | "baz"
  437. #data
  438. <!doctype html><hgroup><p>foo</hgroup>bar
  439. #errors
  440. #document
  441. | <!DOCTYPE html>
  442. | <html>
  443. | <head>
  444. | <body>
  445. | <hgroup>
  446. | <p>
  447. | "foo"
  448. | "bar"
  449. #data
  450. <!doctype html><p>foo<listing>bar<p>baz
  451. #errors
  452. (1,39): expected-closing-tag-but-got-eof
  453. 30: Unclosed element “listing”.
  454. #document
  455. | <!DOCTYPE html>
  456. | <html>
  457. | <head>
  458. | <body>
  459. | <p>
  460. | "foo"
  461. | <listing>
  462. | "bar"
  463. | <p>
  464. | "baz"
  465. #data
  466. <!doctype html><listing><p>foo</listing>bar
  467. #errors
  468. #document
  469. | <!DOCTYPE html>
  470. | <html>
  471. | <head>
  472. | <body>
  473. | <listing>
  474. | <p>
  475. | "foo"
  476. | "bar"
  477. #data
  478. <!doctype html><p>foo<menu>bar<p>baz
  479. #errors
  480. (1,36): expected-closing-tag-but-got-eof
  481. 27: Unclosed element “menu”.
  482. #document
  483. | <!DOCTYPE html>
  484. | <html>
  485. | <head>
  486. | <body>
  487. | <p>
  488. | "foo"
  489. | <menu>
  490. | "bar"
  491. | <p>
  492. | "baz"
  493. #data
  494. <!doctype html><menu><p>foo</menu>bar
  495. #errors
  496. #document
  497. | <!DOCTYPE html>
  498. | <html>
  499. | <head>
  500. | <body>
  501. | <menu>
  502. | <p>
  503. | "foo"
  504. | "bar"
  505. #data
  506. <!doctype html><p>foo<nav>bar<p>baz
  507. #errors
  508. (1,35): expected-closing-tag-but-got-eof
  509. 26: Unclosed element “nav”.
  510. #document
  511. | <!DOCTYPE html>
  512. | <html>
  513. | <head>
  514. | <body>
  515. | <p>
  516. | "foo"
  517. | <nav>
  518. | "bar"
  519. | <p>
  520. | "baz"
  521. #data
  522. <!doctype html><nav><p>foo</nav>bar
  523. #errors
  524. #document
  525. | <!DOCTYPE html>
  526. | <html>
  527. | <head>
  528. | <body>
  529. | <nav>
  530. | <p>
  531. | "foo"
  532. | "bar"
  533. #data
  534. <!doctype html><p>foo<ol>bar<p>baz
  535. #errors
  536. (1,34): expected-closing-tag-but-got-eof
  537. 25: Unclosed element “ol”.
  538. #document
  539. | <!DOCTYPE html>
  540. | <html>
  541. | <head>
  542. | <body>
  543. | <p>
  544. | "foo"
  545. | <ol>
  546. | "bar"
  547. | <p>
  548. | "baz"
  549. #data
  550. <!doctype html><ol><p>foo</ol>bar
  551. #errors
  552. #document
  553. | <!DOCTYPE html>
  554. | <html>
  555. | <head>
  556. | <body>
  557. | <ol>
  558. | <p>
  559. | "foo"
  560. | "bar"
  561. #data
  562. <!doctype html><p>foo<pre>bar<p>baz
  563. #errors
  564. (1,35): expected-closing-tag-but-got-eof
  565. 26: Unclosed element “pre”.
  566. #document
  567. | <!DOCTYPE html>
  568. | <html>
  569. | <head>
  570. | <body>
  571. | <p>
  572. | "foo"
  573. | <pre>
  574. | "bar"
  575. | <p>
  576. | "baz"
  577. #data
  578. <!doctype html><pre><p>foo</pre>bar
  579. #errors
  580. #document
  581. | <!DOCTYPE html>
  582. | <html>
  583. | <head>
  584. | <body>
  585. | <pre>
  586. | <p>
  587. | "foo"
  588. | "bar"
  589. #data
  590. <!doctype html><p>foo<section>bar<p>baz
  591. #errors
  592. (1,39): expected-closing-tag-but-got-eof
  593. 30: Unclosed element “section”.
  594. #document
  595. | <!DOCTYPE html>
  596. | <html>
  597. | <head>
  598. | <body>
  599. | <p>
  600. | "foo"
  601. | <section>
  602. | "bar"
  603. | <p>
  604. | "baz"
  605. #data
  606. <!doctype html><section><p>foo</section>bar
  607. #errors
  608. #document
  609. | <!DOCTYPE html>
  610. | <html>
  611. | <head>
  612. | <body>
  613. | <section>
  614. | <p>
  615. | "foo"
  616. | "bar"
  617. #data
  618. <!doctype html><p>foo<summary>bar<p>baz
  619. #errors
  620. (1,39): expected-closing-tag-but-got-eof
  621. 30: Unclosed element “summary”.
  622. #document
  623. | <!DOCTYPE html>
  624. | <html>
  625. | <head>
  626. | <body>
  627. | <p>
  628. | "foo"
  629. | <summary>
  630. | "bar"
  631. | <p>
  632. | "baz"
  633. #data
  634. <!doctype html><summary><p>foo</summary>bar
  635. #errors
  636. #document
  637. | <!DOCTYPE html>
  638. | <html>
  639. | <head>
  640. | <body>
  641. | <summary>
  642. | <p>
  643. | "foo"
  644. | "bar"
  645. #data
  646. <!doctype html><p>foo<ul>bar<p>baz
  647. #errors
  648. (1,34): expected-closing-tag-but-got-eof
  649. 25: Unclosed element “ul”.
  650. #document
  651. | <!DOCTYPE html>
  652. | <html>
  653. | <head>
  654. | <body>
  655. | <p>
  656. | "foo"
  657. | <ul>
  658. | "bar"
  659. | <p>
  660. | "baz"
  661. #data
  662. <!doctype html><ul><p>foo</ul>bar
  663. #errors
  664. #document
  665. | <!DOCTYPE html>
  666. | <html>
  667. | <head>
  668. | <body>
  669. | <ul>
  670. | <p>
  671. | "foo"
  672. | "bar"