tests10.dat 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  1. #data
  2. <!DOCTYPE html><svg></svg>
  3. #errors
  4. #document
  5. | <!DOCTYPE html>
  6. | <html>
  7. | <head>
  8. | <body>
  9. | <svg svg>
  10. #data
  11. <!DOCTYPE html><svg></svg><![CDATA[a]]>
  12. #errors
  13. (1,28) expected-dashes-or-doctype
  14. #document
  15. | <!DOCTYPE html>
  16. | <html>
  17. | <head>
  18. | <body>
  19. | <svg svg>
  20. | <!-- [CDATA[a]] -->
  21. #data
  22. <!DOCTYPE html><body><svg></svg>
  23. #errors
  24. #document
  25. | <!DOCTYPE html>
  26. | <html>
  27. | <head>
  28. | <body>
  29. | <svg svg>
  30. #data
  31. <!DOCTYPE html><body><select><svg></svg></select>
  32. #errors
  33. (1,34) unexpected-start-tag-in-select
  34. (1,40) unexpected-end-tag-in-select
  35. #document
  36. | <!DOCTYPE html>
  37. | <html>
  38. | <head>
  39. | <body>
  40. | <select>
  41. #data
  42. <!DOCTYPE html><body><select><option><svg></svg></option></select>
  43. #errors
  44. (1,42) unexpected-start-tag-in-select
  45. (1,48) unexpected-end-tag-in-select
  46. #document
  47. | <!DOCTYPE html>
  48. | <html>
  49. | <head>
  50. | <body>
  51. | <select>
  52. | <option>
  53. #data
  54. <!DOCTYPE html><body><table><svg></svg></table>
  55. #errors
  56. (1,33) foster-parenting-start-tag
  57. #document
  58. | <!DOCTYPE html>
  59. | <html>
  60. | <head>
  61. | <body>
  62. | <svg svg>
  63. | <table>
  64. #data
  65. <!DOCTYPE html><body><table><svg><g>foo</g></svg></table>
  66. #errors
  67. (1,33) foster-parenting-start-tag
  68. #document
  69. | <!DOCTYPE html>
  70. | <html>
  71. | <head>
  72. | <body>
  73. | <svg svg>
  74. | <svg g>
  75. | "foo"
  76. | <table>
  77. #data
  78. <!DOCTYPE html><body><table><svg><g>foo</g><g>bar</g></svg></table>
  79. #errors
  80. (1,33) foster-parenting-start-tag
  81. #document
  82. | <!DOCTYPE html>
  83. | <html>
  84. | <head>
  85. | <body>
  86. | <svg svg>
  87. | <svg g>
  88. | "foo"
  89. | <svg g>
  90. | "bar"
  91. | <table>
  92. #data
  93. <!DOCTYPE html><body><table><tbody><svg><g>foo</g><g>bar</g></svg></tbody></table>
  94. #errors
  95. (1,40) foster-parenting-start-tag
  96. #document
  97. | <!DOCTYPE html>
  98. | <html>
  99. | <head>
  100. | <body>
  101. | <svg svg>
  102. | <svg g>
  103. | "foo"
  104. | <svg g>
  105. | "bar"
  106. | <table>
  107. | <tbody>
  108. #data
  109. <!DOCTYPE html><body><table><tbody><tr><svg><g>foo</g><g>bar</g></svg></tr></tbody></table>
  110. #errors
  111. (1,44) foster-parenting-start-tag
  112. #document
  113. | <!DOCTYPE html>
  114. | <html>
  115. | <head>
  116. | <body>
  117. | <svg svg>
  118. | <svg g>
  119. | "foo"
  120. | <svg g>
  121. | "bar"
  122. | <table>
  123. | <tbody>
  124. | <tr>
  125. #data
  126. <!DOCTYPE html><body><table><tbody><tr><td><svg><g>foo</g><g>bar</g></svg></td></tr></tbody></table>
  127. #errors
  128. #document
  129. | <!DOCTYPE html>
  130. | <html>
  131. | <head>
  132. | <body>
  133. | <table>
  134. | <tbody>
  135. | <tr>
  136. | <td>
  137. | <svg svg>
  138. | <svg g>
  139. | "foo"
  140. | <svg g>
  141. | "bar"
  142. #data
  143. <!DOCTYPE html><body><table><tbody><tr><td><svg><g>foo</g><g>bar</g></svg><p>baz</td></tr></tbody></table>
  144. #errors
  145. #document
  146. | <!DOCTYPE html>
  147. | <html>
  148. | <head>
  149. | <body>
  150. | <table>
  151. | <tbody>
  152. | <tr>
  153. | <td>
  154. | <svg svg>
  155. | <svg g>
  156. | "foo"
  157. | <svg g>
  158. | "bar"
  159. | <p>
  160. | "baz"
  161. #data
  162. <!DOCTYPE html><body><table><caption><svg><g>foo</g><g>bar</g></svg><p>baz</caption></table>
  163. #errors
  164. #document
  165. | <!DOCTYPE html>
  166. | <html>
  167. | <head>
  168. | <body>
  169. | <table>
  170. | <caption>
  171. | <svg svg>
  172. | <svg g>
  173. | "foo"
  174. | <svg g>
  175. | "bar"
  176. | <p>
  177. | "baz"
  178. #data
  179. <!DOCTYPE html><body><table><caption><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
  180. #errors
  181. (1,65) unexpected-html-element-in-foreign-content
  182. #document
  183. | <!DOCTYPE html>
  184. | <html>
  185. | <head>
  186. | <body>
  187. | <table>
  188. | <caption>
  189. | <svg svg>
  190. | <svg g>
  191. | "foo"
  192. | <svg g>
  193. | "bar"
  194. | <p>
  195. | "baz"
  196. | <p>
  197. | "quux"
  198. #data
  199. <!DOCTYPE html><body><table><caption><svg><g>foo</g><g>bar</g>baz</table><p>quux
  200. #errors
  201. (1,73) unexpected-end-tag
  202. (1,73) expected-one-end-tag-but-got-another
  203. #document
  204. | <!DOCTYPE html>
  205. | <html>
  206. | <head>
  207. | <body>
  208. | <table>
  209. | <caption>
  210. | <svg svg>
  211. | <svg g>
  212. | "foo"
  213. | <svg g>
  214. | "bar"
  215. | "baz"
  216. | <p>
  217. | "quux"
  218. #data
  219. <!DOCTYPE html><body><table><colgroup><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
  220. #errors
  221. (1,43) foster-parenting-start-tag svg
  222. (1,66) unexpected HTML-like start tag token in foreign content
  223. (1,66) foster-parenting-start-tag
  224. (1,67) foster-parenting-character
  225. (1,68) foster-parenting-character
  226. (1,69) foster-parenting-character
  227. #document
  228. | <!DOCTYPE html>
  229. | <html>
  230. | <head>
  231. | <body>
  232. | <svg svg>
  233. | <svg g>
  234. | "foo"
  235. | <svg g>
  236. | "bar"
  237. | <p>
  238. | "baz"
  239. | <table>
  240. | <colgroup>
  241. | <p>
  242. | "quux"
  243. #data
  244. <!DOCTYPE html><body><table><tr><td><select><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
  245. #errors
  246. (1,49) unexpected-start-tag-in-select
  247. (1,52) unexpected-start-tag-in-select
  248. (1,59) unexpected-end-tag-in-select
  249. (1,62) unexpected-start-tag-in-select
  250. (1,69) unexpected-end-tag-in-select
  251. (1,72) unexpected-start-tag-in-select
  252. (1,83) unexpected-table-element-end-tag-in-select-in-table
  253. #document
  254. | <!DOCTYPE html>
  255. | <html>
  256. | <head>
  257. | <body>
  258. | <table>
  259. | <tbody>
  260. | <tr>
  261. | <td>
  262. | <select>
  263. | "foobarbaz"
  264. | <p>
  265. | "quux"
  266. #data
  267. <!DOCTYPE html><body><table><select><svg><g>foo</g><g>bar</g><p>baz</table><p>quux
  268. #errors
  269. (1,36) unexpected-start-tag-implies-table-voodoo
  270. (1,41) unexpected-start-tag-in-select
  271. (1,44) unexpected-start-tag-in-select
  272. (1,51) unexpected-end-tag-in-select
  273. (1,54) unexpected-start-tag-in-select
  274. (1,61) unexpected-end-tag-in-select
  275. (1,64) unexpected-start-tag-in-select
  276. (1,75) unexpected-table-element-end-tag-in-select-in-table
  277. #document
  278. | <!DOCTYPE html>
  279. | <html>
  280. | <head>
  281. | <body>
  282. | <select>
  283. | "foobarbaz"
  284. | <table>
  285. | <p>
  286. | "quux"
  287. #data
  288. <!DOCTYPE html><body></body></html><svg><g>foo</g><g>bar</g><p>baz
  289. #errors
  290. (1,40) expected-eof-but-got-start-tag
  291. (1,63) unexpected-html-element-in-foreign-content
  292. #document
  293. | <!DOCTYPE html>
  294. | <html>
  295. | <head>
  296. | <body>
  297. | <svg svg>
  298. | <svg g>
  299. | "foo"
  300. | <svg g>
  301. | "bar"
  302. | <p>
  303. | "baz"
  304. #data
  305. <!DOCTYPE html><body></body><svg><g>foo</g><g>bar</g><p>baz
  306. #errors
  307. (1,33) unexpected-start-tag-after-body
  308. (1,56) unexpected-html-element-in-foreign-content
  309. #document
  310. | <!DOCTYPE html>
  311. | <html>
  312. | <head>
  313. | <body>
  314. | <svg svg>
  315. | <svg g>
  316. | "foo"
  317. | <svg g>
  318. | "bar"
  319. | <p>
  320. | "baz"
  321. #data
  322. <!DOCTYPE html><frameset><svg><g></g><g></g><p><span>
  323. #errors
  324. (1,30) unexpected-start-tag-in-frameset
  325. (1,33) unexpected-start-tag-in-frameset
  326. (1,37) unexpected-end-tag-in-frameset
  327. (1,40) unexpected-start-tag-in-frameset
  328. (1,44) unexpected-end-tag-in-frameset
  329. (1,47) unexpected-start-tag-in-frameset
  330. (1,53) unexpected-start-tag-in-frameset
  331. (1,53) eof-in-frameset
  332. #document
  333. | <!DOCTYPE html>
  334. | <html>
  335. | <head>
  336. | <frameset>
  337. #data
  338. <!DOCTYPE html><frameset></frameset><svg><g></g><g></g><p><span>
  339. #errors
  340. (1,41) unexpected-start-tag-after-frameset
  341. (1,44) unexpected-start-tag-after-frameset
  342. (1,48) unexpected-end-tag-after-frameset
  343. (1,51) unexpected-start-tag-after-frameset
  344. (1,55) unexpected-end-tag-after-frameset
  345. (1,58) unexpected-start-tag-after-frameset
  346. (1,64) unexpected-start-tag-after-frameset
  347. #document
  348. | <!DOCTYPE html>
  349. | <html>
  350. | <head>
  351. | <frameset>
  352. #data
  353. <!DOCTYPE html><body xlink:href=foo><svg xlink:href=foo></svg>
  354. #errors
  355. #document
  356. | <!DOCTYPE html>
  357. | <html>
  358. | <head>
  359. | <body>
  360. | xlink:href="foo"
  361. | <svg svg>
  362. | xlink href="foo"
  363. #data
  364. <!DOCTYPE html><body xlink:href=foo xml:lang=en><svg><g xml:lang=en xlink:href=foo></g></svg>
  365. #errors
  366. #document
  367. | <!DOCTYPE html>
  368. | <html>
  369. | <head>
  370. | <body>
  371. | xlink:href="foo"
  372. | xml:lang="en"
  373. | <svg svg>
  374. | <svg g>
  375. | xlink href="foo"
  376. | xml lang="en"
  377. #data
  378. <!DOCTYPE html><body xlink:href=foo xml:lang=en><svg><g xml:lang=en xlink:href=foo /></svg>
  379. #errors
  380. #document
  381. | <!DOCTYPE html>
  382. | <html>
  383. | <head>
  384. | <body>
  385. | xlink:href="foo"
  386. | xml:lang="en"
  387. | <svg svg>
  388. | <svg g>
  389. | xlink href="foo"
  390. | xml lang="en"
  391. #data
  392. <!DOCTYPE html><body xlink:href=foo xml:lang=en><svg><g xml:lang=en xlink:href=foo />bar</svg>
  393. #errors
  394. #document
  395. | <!DOCTYPE html>
  396. | <html>
  397. | <head>
  398. | <body>
  399. | xlink:href="foo"
  400. | xml:lang="en"
  401. | <svg svg>
  402. | <svg g>
  403. | xlink href="foo"
  404. | xml lang="en"
  405. | "bar"
  406. #data
  407. <svg></path>
  408. #errors
  409. (1,5) expected-doctype-but-got-start-tag
  410. (1,12) unexpected-end-tag
  411. (1,12) unexpected-end-tag
  412. (1,12) expected-closing-tag-but-got-eof
  413. #document
  414. | <html>
  415. | <head>
  416. | <body>
  417. | <svg svg>
  418. #data
  419. <div><svg></div>a
  420. #errors
  421. (1,5) expected-doctype-but-got-start-tag
  422. (1,16) unexpected-end-tag
  423. (1,16) end-tag-too-early
  424. #document
  425. | <html>
  426. | <head>
  427. | <body>
  428. | <div>
  429. | <svg svg>
  430. | "a"
  431. #data
  432. <div><svg><path></div>a
  433. #errors
  434. (1,5) expected-doctype-but-got-start-tag
  435. (1,22) unexpected-end-tag
  436. (1,22) end-tag-too-early
  437. #document
  438. | <html>
  439. | <head>
  440. | <body>
  441. | <div>
  442. | <svg svg>
  443. | <svg path>
  444. | "a"
  445. #data
  446. <div><svg><path></svg><path>
  447. #errors
  448. (1,5) expected-doctype-but-got-start-tag
  449. (1,22) unexpected-end-tag
  450. (1,28) expected-closing-tag-but-got-eof
  451. #document
  452. | <html>
  453. | <head>
  454. | <body>
  455. | <div>
  456. | <svg svg>
  457. | <svg path>
  458. | <path>
  459. #data
  460. <div><svg><path><foreignObject><math></div>a
  461. #errors
  462. (1,5) expected-doctype-but-got-start-tag
  463. (1,43) unexpected-end-tag
  464. (1,43) end-tag-too-early
  465. (1,44) expected-closing-tag-but-got-eof
  466. #document
  467. | <html>
  468. | <head>
  469. | <body>
  470. | <div>
  471. | <svg svg>
  472. | <svg path>
  473. | <svg foreignObject>
  474. | <math math>
  475. | "a"
  476. #data
  477. <div><svg><path><foreignObject><p></div>a
  478. #errors
  479. (1,5) expected-doctype-but-got-start-tag
  480. (1,40) end-tag-too-early
  481. (1,41) expected-closing-tag-but-got-eof
  482. #document
  483. | <html>
  484. | <head>
  485. | <body>
  486. | <div>
  487. | <svg svg>
  488. | <svg path>
  489. | <svg foreignObject>
  490. | <p>
  491. | "a"
  492. #data
  493. <!DOCTYPE html><svg><desc><div><svg><ul>a
  494. #errors
  495. (1,40) unexpected-html-element-in-foreign-content
  496. (1,41) expected-closing-tag-but-got-eof
  497. #document
  498. | <!DOCTYPE html>
  499. | <html>
  500. | <head>
  501. | <body>
  502. | <svg svg>
  503. | <svg desc>
  504. | <div>
  505. | <svg svg>
  506. | <ul>
  507. | "a"
  508. #data
  509. <!DOCTYPE html><svg><desc><svg><ul>a
  510. #errors
  511. (1,35) unexpected-html-element-in-foreign-content
  512. (1,36) expected-closing-tag-but-got-eof
  513. #document
  514. | <!DOCTYPE html>
  515. | <html>
  516. | <head>
  517. | <body>
  518. | <svg svg>
  519. | <svg desc>
  520. | <svg svg>
  521. | <ul>
  522. | "a"
  523. #data
  524. <!DOCTYPE html><p><svg><desc><p>
  525. #errors
  526. (1,32) expected-closing-tag-but-got-eof
  527. #document
  528. | <!DOCTYPE html>
  529. | <html>
  530. | <head>
  531. | <body>
  532. | <p>
  533. | <svg svg>
  534. | <svg desc>
  535. | <p>
  536. #data
  537. <!DOCTYPE html><p><svg><title><p>
  538. #errors
  539. (1,33) expected-closing-tag-but-got-eof
  540. #document
  541. | <!DOCTYPE html>
  542. | <html>
  543. | <head>
  544. | <body>
  545. | <p>
  546. | <svg svg>
  547. | <svg title>
  548. | <p>
  549. #data
  550. <div><svg><path><foreignObject><p></foreignObject><p>
  551. #errors
  552. (1,5) expected-doctype-but-got-start-tag
  553. (1,50) unexpected-end-tag
  554. (1,53) expected-closing-tag-but-got-eof
  555. #document
  556. | <html>
  557. | <head>
  558. | <body>
  559. | <div>
  560. | <svg svg>
  561. | <svg path>
  562. | <svg foreignObject>
  563. | <p>
  564. | <p>
  565. #data
  566. <math><mi><div><object><div><span></span></div></object></div></mi><mi>
  567. #errors
  568. (1,6) expected-doctype-but-got-start-tag
  569. (1,71) expected-closing-tag-but-got-eof
  570. #document
  571. | <html>
  572. | <head>
  573. | <body>
  574. | <math math>
  575. | <math mi>
  576. | <div>
  577. | <object>
  578. | <div>
  579. | <span>
  580. | <math mi>
  581. #data
  582. <math><mi><svg><foreignObject><div><div></div></div></foreignObject></svg></mi><mi>
  583. #errors
  584. (1,6) expected-doctype-but-got-start-tag
  585. (1,83) expected-closing-tag-but-got-eof
  586. #document
  587. | <html>
  588. | <head>
  589. | <body>
  590. | <math math>
  591. | <math mi>
  592. | <svg svg>
  593. | <svg foreignObject>
  594. | <div>
  595. | <div>
  596. | <math mi>
  597. #data
  598. <svg><script></script><path>
  599. #errors
  600. (1,5) expected-doctype-but-got-start-tag
  601. (1,28) expected-closing-tag-but-got-eof
  602. #document
  603. | <html>
  604. | <head>
  605. | <body>
  606. | <svg svg>
  607. | <svg script>
  608. | <svg path>
  609. #data
  610. <table><svg></svg><tr>
  611. #errors
  612. (1,7) expected-doctype-but-got-start-tag
  613. (1,12) unexpected-start-tag-implies-table-voodoo
  614. (1,22) eof-in-table
  615. #document
  616. | <html>
  617. | <head>
  618. | <body>
  619. | <svg svg>
  620. | <table>
  621. | <tbody>
  622. | <tr>
  623. #data
  624. <math><mi><mglyph>
  625. #errors
  626. (1,6) expected-doctype-but-got-start-tag
  627. (1,18) expected-closing-tag-but-got-eof
  628. #document
  629. | <html>
  630. | <head>
  631. | <body>
  632. | <math math>
  633. | <math mi>
  634. | <math mglyph>
  635. #data
  636. <math><mi><malignmark>
  637. #errors
  638. (1,6) expected-doctype-but-got-start-tag
  639. (1,22) expected-closing-tag-but-got-eof
  640. #document
  641. | <html>
  642. | <head>
  643. | <body>
  644. | <math math>
  645. | <math mi>
  646. | <math malignmark>
  647. #data
  648. <math><mo><mglyph>
  649. #errors
  650. (1,6) expected-doctype-but-got-start-tag
  651. (1,18) expected-closing-tag-but-got-eof
  652. #document
  653. | <html>
  654. | <head>
  655. | <body>
  656. | <math math>
  657. | <math mo>
  658. | <math mglyph>
  659. #data
  660. <math><mo><malignmark>
  661. #errors
  662. (1,6) expected-doctype-but-got-start-tag
  663. (1,22) expected-closing-tag-but-got-eof
  664. #document
  665. | <html>
  666. | <head>
  667. | <body>
  668. | <math math>
  669. | <math mo>
  670. | <math malignmark>
  671. #data
  672. <math><mn><mglyph>
  673. #errors
  674. (1,6) expected-doctype-but-got-start-tag
  675. (1,18) expected-closing-tag-but-got-eof
  676. #document
  677. | <html>
  678. | <head>
  679. | <body>
  680. | <math math>
  681. | <math mn>
  682. | <math mglyph>
  683. #data
  684. <math><mn><malignmark>
  685. #errors
  686. (1,6) expected-doctype-but-got-start-tag
  687. (1,22) expected-closing-tag-but-got-eof
  688. #document
  689. | <html>
  690. | <head>
  691. | <body>
  692. | <math math>
  693. | <math mn>
  694. | <math malignmark>
  695. #data
  696. <math><ms><mglyph>
  697. #errors
  698. (1,6) expected-doctype-but-got-start-tag
  699. (1,18) expected-closing-tag-but-got-eof
  700. #document
  701. | <html>
  702. | <head>
  703. | <body>
  704. | <math math>
  705. | <math ms>
  706. | <math mglyph>
  707. #data
  708. <math><ms><malignmark>
  709. #errors
  710. (1,6) expected-doctype-but-got-start-tag
  711. (1,22) expected-closing-tag-but-got-eof
  712. #document
  713. | <html>
  714. | <head>
  715. | <body>
  716. | <math math>
  717. | <math ms>
  718. | <math malignmark>
  719. #data
  720. <math><mtext><mglyph>
  721. #errors
  722. (1,6) expected-doctype-but-got-start-tag
  723. (1,21) expected-closing-tag-but-got-eof
  724. #document
  725. | <html>
  726. | <head>
  727. | <body>
  728. | <math math>
  729. | <math mtext>
  730. | <math mglyph>
  731. #data
  732. <math><mtext><malignmark>
  733. #errors
  734. (1,6) expected-doctype-but-got-start-tag
  735. (1,25) expected-closing-tag-but-got-eof
  736. #document
  737. | <html>
  738. | <head>
  739. | <body>
  740. | <math math>
  741. | <math mtext>
  742. | <math malignmark>
  743. #data
  744. <math><annotation-xml><svg></svg></annotation-xml><mi>
  745. #errors
  746. (1,6) expected-doctype-but-got-start-tag
  747. (1,54) expected-closing-tag-but-got-eof
  748. #document
  749. | <html>
  750. | <head>
  751. | <body>
  752. | <math math>
  753. | <math annotation-xml>
  754. | <svg svg>
  755. | <math mi>
  756. #data
  757. <math><annotation-xml><svg><foreignObject><div><math><mi></mi></math><span></span></div></foreignObject><path></path></svg></annotation-xml><mi>
  758. #errors
  759. (1,6) expected-doctype-but-got-start-tag
  760. (1,144) expected-closing-tag-but-got-eof
  761. #document
  762. | <html>
  763. | <head>
  764. | <body>
  765. | <math math>
  766. | <math annotation-xml>
  767. | <svg svg>
  768. | <svg foreignObject>
  769. | <div>
  770. | <math math>
  771. | <math mi>
  772. | <span>
  773. | <svg path>
  774. | <math mi>
  775. #data
  776. <math><annotation-xml><svg><foreignObject><math><mi><svg></svg></mi><mo></mo></math><span></span></foreignObject><path></path></svg></annotation-xml><mi>
  777. #errors
  778. (1,6) expected-doctype-but-got-start-tag
  779. (1,153) expected-closing-tag-but-got-eof
  780. #document
  781. | <html>
  782. | <head>
  783. | <body>
  784. | <math math>
  785. | <math annotation-xml>
  786. | <svg svg>
  787. | <svg foreignObject>
  788. | <math math>
  789. | <math mi>
  790. | <svg svg>
  791. | <math mo>
  792. | <span>
  793. | <svg path>
  794. | <math mi>