Parent Directory
|
Revision Log
++ whatpm/What/ChangeLog 1 May 2007 06:20:06 -0000 2007-05-01 Wakaba <wakaba@suika.fam.cx> * NanoDOM.pm (last_child, previous_sibling): New attributes. (clone_node): Attribute nodes were not completely copied. * HTML.pm.src: Many bugs are fixed. ++ whatpm/t/ChangeLog 1 May 2007 06:21:52 -0000 2007-05-01 Wakaba <wakaba@suika.fam.cx> * HTML-tree.t: New test file is added. Sort key was incorrect. * HTML-tokenizer.t: New test file is added. * tokenizer-test-1.test, tree-test-1.dat: New tests.
| 1 | wakaba | 1.1 | #data |
| 2 | <!DOCTYPE html><html title="t"><head><title></title></head><body></body></html> | ||
| 3 | #errors | ||
| 4 | #document | ||
| 5 | | <!DOCTYPE HTML> | ||
| 6 | | <html> | ||
| 7 | | title="t" | ||
| 8 | | <head> | ||
| 9 | | <title> | ||
| 10 | | <body> | ||
| 11 | |||
| 12 | #data | ||
| 13 | <!DOCTYPE html><html><head title="t"><title></title></head><body></body></html> | ||
| 14 | #errors | ||
| 15 | #document | ||
| 16 | | <!DOCTYPE HTML> | ||
| 17 | | <html> | ||
| 18 | | <head> | ||
| 19 | | title="t" | ||
| 20 | | <title> | ||
| 21 | | <body> | ||
| 22 | |||
| 23 | #data | ||
| 24 | <!DOCTYPE html><html><head><title class="t"></title></head><body></body></html> | ||
| 25 | #errors | ||
| 26 | #document | ||
| 27 | | <!DOCTYPE HTML> | ||
| 28 | | <html> | ||
| 29 | | <head> | ||
| 30 | | <title> | ||
| 31 | | class="t" | ||
| 32 | | <body> | ||
| 33 | |||
| 34 | #data | ||
| 35 | <!DOCTYPE html><html><head></head><body></body><title class="a"></title></html> | ||
| 36 | #errors | ||
| 37 | #document | ||
| 38 | | <!DOCTYPE HTML> | ||
| 39 | | <html> | ||
| 40 | | <head> | ||
| 41 | | <title> | ||
| 42 | | class="a" | ||
| 43 | | <body> | ||
| 44 | |||
| 45 | #data | ||
| 46 | <!DOCTYPE html><html><head><title></title></head><body title="t"></body></html> | ||
| 47 | #errors | ||
| 48 | #document | ||
| 49 | | <!DOCTYPE HTML> | ||
| 50 | | <html> | ||
| 51 | | <head> | ||
| 52 | | <title> | ||
| 53 | | <body> | ||
| 54 | | title="t" | ||
| 55 | |||
| 56 | #data | ||
| 57 | <!DOCTYPE html><html><head><title></title><meta name="a"></head><body></body></html> | ||
| 58 | #errors | ||
| 59 | #document | ||
| 60 | | <!DOCTYPE HTML> | ||
| 61 | | <html> | ||
| 62 | | <head> | ||
| 63 | | <title> | ||
| 64 | | <meta> | ||
| 65 | | name="a" | ||
| 66 | | <body> | ||
| 67 | |||
| 68 | #data | ||
| 69 | <!DOCTYPE html><html><head><title></title></head><body><meta name="a"></body></html> | ||
| 70 | #errors | ||
| 71 | #document | ||
| 72 | | <!DOCTYPE HTML> | ||
| 73 | | <html> | ||
| 74 | | <head> | ||
| 75 | | <title> | ||
| 76 | | <meta> | ||
| 77 | | name="a" | ||
| 78 | | <body> | ||
| 79 | |||
| 80 | #data | ||
| 81 | <!DOCTYPE html><html><head><title></title><link rel="a"></head><body></body></html> | ||
| 82 | #errors | ||
| 83 | #document | ||
| 84 | | <!DOCTYPE HTML> | ||
| 85 | | <html> | ||
| 86 | | <head> | ||
| 87 | | <title> | ||
| 88 | | <link> | ||
| 89 | | rel="a" | ||
| 90 | | <body> | ||
| 91 | &nb |