You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

611 lines
7.7 KiB

  1. #data
  2. Test
  3. #errors
  4. Line: 1 Col: 4 Unexpected non-space characters. Expected DOCTYPE.
  5. #document
  6. | <html>
  7. | <head>
  8. | <body>
  9. | "Test"
  10. #data
  11. <div></div>
  12. #errors
  13. #document
  14. | <html>
  15. | <head>
  16. | <body>
  17. | <div>
  18. #data
  19. <div>Test</div>
  20. #errors
  21. #document
  22. | <html>
  23. | <head>
  24. | <body>
  25. | <div>
  26. | "Test"
  27. #data
  28. <di
  29. #errors
  30. #document
  31. | <html>
  32. | <head>
  33. | <body>
  34. #data
  35. <div>Hello</div>
  36. <script>
  37. console.log("PASS");
  38. </script>
  39. <div>Bye</div>
  40. #errors
  41. #document
  42. | <html>
  43. | <head>
  44. | <body>
  45. | <div>
  46. | "Hello"
  47. | "
  48. "
  49. | <script>
  50. | "
  51. console.log("PASS");
  52. "
  53. | "
  54. "
  55. | <div>
  56. | "Bye"
  57. #data
  58. <div foo="bar">Hello</div>
  59. #errors
  60. #document
  61. | <html>
  62. | <head>
  63. | <body>
  64. | <div>
  65. | foo="bar"
  66. | "Hello"
  67. #data
  68. <div>Hello</div>
  69. <script>
  70. console.log("FOO<span>BAR</span>BAZ");
  71. </script>
  72. <div>Bye</div>
  73. #errors
  74. #document
  75. | <html>
  76. | <head>
  77. | <body>
  78. | <div>
  79. | "Hello"
  80. | "
  81. "
  82. | <script>
  83. | "
  84. console.log("FOO<span>BAR</span>BAZ");
  85. "
  86. | "
  87. "
  88. | <div>
  89. | "Bye"
  90. #data
  91. <foo bar="baz"></foo><potato quack="duck"></potato>
  92. #errors
  93. #document
  94. | <html>
  95. | <head>
  96. | <body>
  97. | <foo>
  98. | bar="baz"
  99. | <potato>
  100. | quack="duck"
  101. #data
  102. <foo bar="baz"><potato quack="duck"></potato></foo>
  103. #errors
  104. #document
  105. | <html>
  106. | <head>
  107. | <body>
  108. | <foo>
  109. | bar="baz"
  110. | <potato>
  111. | quack="duck"
  112. #data
  113. <foo></foo bar="baz"><potato></potato quack="duck">
  114. #errors
  115. #document
  116. | <html>
  117. | <head>
  118. | <body>
  119. | <foo>
  120. | <potato>
  121. #data
  122. </ tttt>
  123. #errors
  124. #document
  125. | <!-- tttt -->
  126. | <html>
  127. | <head>
  128. | <body>
  129. #data
  130. <div FOO ><img><img></div>
  131. #errors
  132. #document
  133. | <html>
  134. | <head>
  135. | <body>
  136. | <div>
  137. | foo=""
  138. | <img>
  139. | <img>
  140. #data
  141. <p>Test</p<p>Test2</p>
  142. #errors
  143. #document
  144. | <html>
  145. | <head>
  146. | <body>
  147. | <p>
  148. | "TestTest2"
  149. #data
  150. <rdar://problem/6869687>
  151. #errors
  152. #document
  153. | <html>
  154. | <head>
  155. | <body>
  156. | <rdar:>
  157. | 6869687=""
  158. | problem=""
  159. #data
  160. <A>test< /A>
  161. #errors
  162. #document
  163. | <html>
  164. | <head>
  165. | <body>
  166. | <a>
  167. | "test< /A>"
  168. #data
  169. &lt;
  170. #errors
  171. #document
  172. | <html>
  173. | <head>
  174. | <body>
  175. | "<"
  176. #data
  177. <body foo='bar'><body foo='baz' yo='mama'>
  178. #errors
  179. #document
  180. | <html>
  181. | <head>
  182. | <body>
  183. | foo="bar"
  184. | yo="mama"
  185. #data
  186. <body></br foo="bar"></body>
  187. #errors
  188. #document
  189. | <html>
  190. | <head>
  191. | <body>
  192. | <br>
  193. #data
  194. <bdy><br foo="bar"></body>
  195. #errors
  196. #document
  197. | <html>
  198. | <head>
  199. | <body>
  200. | <bdy>
  201. | <br>
  202. | foo="bar"
  203. #data
  204. <body></body></br foo="bar">
  205. #errors
  206. #document
  207. | <html>
  208. | <head>
  209. | <body>
  210. | <br>
  211. #data
  212. <bdy></body><br foo="bar">
  213. #errors
  214. #document
  215. | <html>
  216. | <head>
  217. | <body>
  218. | <bdy>
  219. | <br>
  220. | foo="bar"
  221. #data
  222. <html><body></body></html><!-- Hi there -->
  223. #errors
  224. #document
  225. | <html>
  226. | <head>
  227. | <body>
  228. | <!-- Hi there -->
  229. #data
  230. <html><body></body></html>x<!-- Hi there -->
  231. #errors
  232. #document
  233. | <html>
  234. | <head>
  235. | <body>
  236. | "x"
  237. | <!-- Hi there -->
  238. #data
  239. <html><body></body></html>x<!-- Hi there --></html><!-- Again -->
  240. #errors
  241. #document
  242. | <html>
  243. | <head>
  244. | <body>
  245. | "x"
  246. | <!-- Hi there -->
  247. | <!-- Again -->
  248. #data
  249. <html><body></body></html>x<!-- Hi there --></body></html><!-- Again -->
  250. #errors
  251. #document
  252. | <html>
  253. | <head>
  254. | <body>
  255. | "x"
  256. | <!-- Hi there -->
  257. | <!-- Again -->
  258. #data
  259. <html><body><ruby><div><rp>xx</rp></div></ruby></body></html>
  260. #errors
  261. #document
  262. | <html>
  263. | <head>
  264. | <body>
  265. | <ruby>
  266. | <div>
  267. | <rp>
  268. | "xx"
  269. #data
  270. <html><body><ruby><div><rt>xx</rt></div></ruby></body></html>
  271. #errors
  272. #document
  273. | <html>
  274. | <head>
  275. | <body>
  276. | <ruby>
  277. | <div>
  278. | <rt>
  279. | "xx"
  280. #data
  281. <html><frameset><!--1--><noframes>A</noframes><!--2--></frameset><!--3--><noframes>B</noframes><!--4--></html><!--5--><noframes>C</noframes><!--6-->
  282. #errors
  283. #document
  284. | <html>
  285. | <head>
  286. | <frameset>
  287. | <!-- 1 -->
  288. | <noframes>
  289. | "A"
  290. | <!-- 2 -->
  291. | <!-- 3 -->
  292. | <noframes>
  293. | "B"
  294. | <!-- 4 -->
  295. | <noframes>
  296. | "C"
  297. | <!-- 5 -->
  298. | <!-- 6 -->
  299. #data
  300. <select><option>A<select><option>B<select><option>C<select><option>D<select><option>E<select><option>F<select><option>G<select>
  301. #errors
  302. #document
  303. | <html>
  304. | <head>
  305. | <body>
  306. | <select>
  307. | <option>
  308. | "A"
  309. | <option>
  310. | "B"
  311. | <select>
  312. | <option>
  313. | "C"
  314. | <option>
  315. | "D"
  316. | <select>
  317. | <option>
  318. | "E"
  319. | <option>
  320. | "F"
  321. | <select>
  322. | <option>
  323. | "G"
  324. #data
  325. <dd><dd><dt><dt><dd><li><li>
  326. #errors
  327. #document
  328. | <html>
  329. | <head>
  330. | <body>
  331. | <dd>
  332. | <dd>
  333. | <dt>
  334. | <dt>
  335. | <dd>
  336. | <li>
  337. | <li>
  338. #data
  339. <div><b></div><div><nobr>a<nobr>
  340. #errors
  341. #document
  342. | <html>
  343. | <head>
  344. | <body>
  345. | <div>
  346. | <b>
  347. | <div>
  348. | <b>
  349. | <nobr>
  350. | "a"
  351. | <nobr>
  352. #data
  353. <head></head>
  354. <body></body>
  355. #errors
  356. #document
  357. | <html>
  358. | <head>
  359. | "
  360. "
  361. | <body>
  362. #data
  363. <head></head> <style></style>ddd
  364. #errors
  365. #document
  366. | <html>
  367. | <head>
  368. | <style>
  369. | " "
  370. | <body>
  371. | "ddd"
  372. #data
  373. <kbd><table></kbd><col><select><tr>
  374. #errors
  375. #document
  376. | <html>
  377. | <head>
  378. | <body>
  379. | <kbd>
  380. | <select>
  381. | <table>
  382. | <colgroup>
  383. | <col>
  384. | <tbody>
  385. | <tr>
  386. #data
  387. <kbd><table></kbd><col><select><tr></table><div>
  388. #errors
  389. #document
  390. | <html>
  391. | <head>
  392. | <body>
  393. | <kbd>
  394. | <select>
  395. | <table>
  396. | <colgroup>
  397. | <col>
  398. | <tbody>
  399. | <tr>
  400. | <div>
  401. #data
  402. <a><li><style></style><title></title></a>
  403. #errors
  404. #document
  405. | <html>
  406. | <head>
  407. | <body>
  408. | <a>
  409. | <li>
  410. | <a>
  411. | <style>
  412. | <title>
  413. #data
  414. <font></p><p><meta><title></title></font>
  415. #errors
  416. #document
  417. | <html>
  418. | <head>
  419. | <body>
  420. | <font>
  421. | <p>
  422. | <p>
  423. | <font>
  424. | <meta>
  425. | <title>
  426. #data
  427. <a><center><title></title><a>
  428. #errors
  429. #document
  430. | <html>
  431. | <head>
  432. | <body>
  433. | <a>
  434. | <center>
  435. | <a>
  436. | <title>
  437. | <a>
  438. #data
  439. <svg><title><div>
  440. #errors
  441. #document
  442. | <html>
  443. | <head>
  444. | <body>
  445. | <svg svg>
  446. | <svg title>
  447. | <div>
  448. #data
  449. <svg><title><rect><div>
  450. #errors
  451. #document
  452. | <html>
  453. | <head>
  454. | <body>
  455. | <svg svg>
  456. | <svg title>
  457. | <rect>
  458. | <div>
  459. #data
  460. <svg><title><svg><div>
  461. #errors
  462. #document
  463. | <html>
  464. | <head>
  465. | <body>
  466. | <svg svg>
  467. | <svg title>
  468. | <svg svg>
  469. | <div>
  470. #data
  471. <img <="" FAIL>
  472. #errors
  473. #document
  474. | <html>
  475. | <head>
  476. | <body>
  477. | <img>
  478. | <=""
  479. | fail=""
  480. #data
  481. <ul><li><div id='foo'/>A</li><li>B<div>C</div></li></ul>
  482. #errors
  483. #document
  484. | <html>
  485. | <head>
  486. | <body>
  487. | <ul>
  488. | <li>
  489. | <div>
  490. | id="foo"
  491. | "A"
  492. | <li>
  493. | "B"
  494. | <div>
  495. | "C"
  496. #data
  497. <svg><em><desc></em>
  498. #errors
  499. #document
  500. | <html>
  501. | <head>
  502. | <body>
  503. | <svg svg>
  504. | <em>
  505. | <desc>
  506. #data
  507. <table><tr><td><svg><desc><td></desc><circle>
  508. #errors
  509. #document
  510. | <html>
  511. | <head>
  512. | <body>
  513. | <table>
  514. | <tbody>
  515. | <tr>
  516. | <td>
  517. | <svg svg>
  518. | <svg desc>
  519. | <td>
  520. | <circle>
  521. #data
  522. <svg><tfoot></mi><td>
  523. #errors
  524. #document
  525. | <html>
  526. | <head>
  527. | <body>
  528. | <svg svg>
  529. | <svg tfoot>
  530. | <svg td>
  531. #data
  532. <math><mrow><mrow><mn>1</mn></mrow><mi>a</mi></mrow></math>
  533. #errors
  534. #document
  535. | <html>
  536. | <head>
  537. | <body>
  538. | <math math>
  539. | <math mrow>
  540. | <math mrow>
  541. | <math mn>
  542. | "1"
  543. | <math mi>
  544. | "a"
  545. #data
  546. <!doctype html><input type="hidden"><frameset>
  547. #errors
  548. #document
  549. | <!DOCTYPE html>
  550. | <html>
  551. | <head>
  552. | <frameset>
  553. #data
  554. <!doctype html><input type="button"><frameset>
  555. #errors
  556. #document
  557. | <!DOCTYPE html>
  558. | <html>
  559. | <head>
  560. | <body>
  561. | <input>
  562. | type="button"