Parent Directory
|
Revision Log
++ whatpm/t/dom-conformance/ChangeLog 6 Oct 2008 05:18:43 -0000 2008-10-06 Wakaba <wakaba@suika.fam.cx> * html-form-input-1.dat: Tests on <input type> added. * html-repetitions.dat: Redundant tests removed. ++ whatpm/Whatpm/ContentChecker/ChangeLog 6 Oct 2008 05:19:26 -0000 * HTML.pm: <input type> definition updated according to HTML5 definition. Prepares for tests against <input type> states. 2008-10-06 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | |
| 2 | #data | ||
| 3 | <input xmlns="http://www.w3.org/1999/xhtml"></input> | ||
| 4 | #errors | ||
| 5 | |||
| 6 | #data | ||
| 7 | <input xmlns="http://www.w3.org/1999/xhtml"> </input> | ||
| 8 | #errors | ||
| 9 | |||
| 10 | #data | ||
| 11 | <input xmlns="http://www.w3.org/1999/xhtml"><!-- --></input> | ||
| 12 | #errors | ||
| 13 | |||
| 14 | #data | ||
| 15 | <input xmlns="http://www.w3.org/1999/xhtml">xx</input> | ||
| 16 | #errors | ||
| 17 | /input/"xx";character not allowed:empty;m | ||
| 18 | |||
| 19 | #data | ||
| 20 | <input xmlns="http://www.w3.org/1999/xhtml"><p/></input> | ||
| 21 | #errors | ||
| 22 | /input/p;element not allowed:empty;m | ||
| 23 | /input/p;no significant content;s | ||
| 24 | |||
| 25 | #data | ||
| 26 | <input xmlns="http://www.w3.org/1999/xhtml"><div>x</div></input> | ||
| 27 | #errors | ||
| 28 | /input/div;element not allowed:empty;m | ||
| 29 | |||
| 30 | #data | ||
| 31 | <input xmlns="http://www.w3.org/1999/xhtml"><input/></input> | ||
| 32 | #errors | ||
| 33 | /input/input;element not allowed:empty;m | ||
| 34 | |||
| 35 | #data | ||
| 36 | <input xmlns="http://www.w3.org/1999/xhtml"><nest/></input> | ||
| 37 | #errors | ||
| 38 | /input/nest;element not allowed:empty;m | ||
| 39 | |||
| 40 | #data | ||
| 41 | <em xmlns="http://www.w3.org/1999/xhtml"><input/></em> | ||
| 42 | #errors | ||
| 43 | /em;no significant content;s | ||
| 44 | |||
| 45 | #data | ||
| 46 | <div xmlns="http://www.w3.org/1999/xhtml"><input/></div> | ||
| 47 | #errors | ||
| 48 | /div;no significant content;s | ||
| 49 | |||
| 50 | #data | ||
| 51 | <p xmlns="http://www.w3.org/1999/xhtml"><input/></p> | ||
| 52 | #errors | ||
| 53 | /p;no significant content;s | ||
| 54 | |||
| 55 | #data | ||
| 56 | <title xmlns="http://www.w3.org/1999/xhtml"><input/></title> | ||
| 57 | #errors | ||
| 58 | /title/input;element not allowed:text;m | ||
| 59 | |||
| 60 | #data | ||
| 61 | <br xmlns="http://www.w3.org/1999/xhtml"><input/></br> | ||
| 62 | #errors | ||
| 63 | /br/input;element not allowed:empty;m | ||
| 64 | |||
| 65 | #data | ||
| 66 | <ins xmlns="http://www.w3.org/1999/xhtml"><input/></ins> | ||
| 67 | #errors | ||
| 68 | /ins;no significant content;s | ||
| 69 | wakaba | 1.2 | |
| 70 | #data | ||
| 71 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 72 | type="hidden"/> | ||
| 73 | #errors | ||
| 74 | |||
| 75 | #data | ||
| 76 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 77 | type="HIDDEN"/> | ||
| 78 | #errors | ||
| 79 | |||
| 80 | #data | ||
| 81 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 82 | type="text"/> | ||
| 83 | #errors | ||
| 84 | |||
| 85 | #data | ||
| 86 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 87 | type="TexT"/> | ||
| 88 | #errors | ||
| 89 | |||
| 90 | #data | ||
| 91 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 92 | type="Email"/> | ||
| 93 | #errors | ||
| 94 | |||
| 95 | #data | ||
| 96 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 97 | type="email"/> | ||
| 98 | #errors | ||
| 99 | |||
| 100 | #data | ||
| 101 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 102 | type="url"/> | ||
| 103 | #errors | ||
| 104 | |||
| 105 | #data | ||
| 106 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 107 | type="uri"/> | ||
| 108 | #errors | ||
| 109 | /input/@type;enumerated:invalid;m | ||
| 110 | |||
| 111 | #data | ||
| 112 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 113 | type="iri"/> | ||
| 114 | #errors | ||
| 115 | /input/@type;enumerated:invalid;m | ||
| 116 | |||
| 117 | #data | ||
| 118 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 119 | type="URL"/> | ||
| 120 | #errors | ||
| 121 | |||
| 122 | #data | ||
| 123 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 124 | type="password"/> | ||
| 125 | #errors | ||
| 126 | |||
| 127 | #data | ||
| 128 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 129 | type="PASSWORD"/> | ||
| 130 | #errors | ||
| 131 | |||
| 132 | #data | ||
| 133 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 134 | type="datetime"/> | ||
| 135 | #errors | ||
| 136 | |||
| 137 | #data | ||
| 138 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 139 | type="DateTime"/> | ||
| 140 | #errors | ||
| 141 | |||
| 142 | #data | ||
| 143 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 144 | type="datatime"/> | ||
| 145 | #errors | ||
| 146 | /input/@type;enumerated:invalid;m | ||
| 147 | |||
| 148 | #data | ||
| 149 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 150 | type="date"/> | ||
| 151 | #errors | ||
| 152 | |||
| 153 | #data | ||
| 154 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 155 | type="dATe"/> | ||
| 156 | #errors | ||
| 157 | |||
| 158 | #data | ||
| 159 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 160 | type="data"/> | ||
| 161 | #errors | ||
| 162 | /input/@type;enumerated:invalid;m | ||
| 163 | |||
| 164 | #data | ||
| 165 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 166 | type="month"/> | ||
| 167 | #errors | ||
| 168 | |||
| 169 | #data | ||
| 170 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 171 | type="monse"/> | ||
| 172 | #errors | ||
| 173 | /input/@type;enumerated:invalid;m | ||
| 174 | |||
| 175 | #data | ||
| 176 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 177 | type="week"/> | ||
| 178 | #errors | ||
| 179 | |||
| 180 | #data | ||
| 181 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 182 | type="weak"/> | ||
| 183 | #errors | ||
| 184 | /input/@type;enumerated:invalid;m | ||
| 185 | |||
| 186 | #data | ||
| 187 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 188 | type="time"/> | ||
| 189 | #errors | ||
| 190 | |||
| 191 | #data | ||
| 192 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 193 | type="Time"/> | ||
| 194 | #errors | ||
| 195 | |||
| 196 | #data | ||
| 197 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 198 | type="datetime-local"/> | ||
| 199 | #errors | ||
| 200 | |||
| 201 | #data | ||
| 202 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 203 | type="number"/> | ||
| 204 | #errors | ||
| 205 | |||
| 206 | #data | ||
| 207 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 208 | type="range"/> | ||
| 209 | #errors | ||
| 210 | |||
| 211 | #data | ||
| 212 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 213 | type="checkbox"/> | ||
| 214 | #errors | ||
| 215 | |||
| 216 | #data | ||
| 217 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 218 | type="check"/> | ||
| 219 | #errors | ||
| 220 | /input/@type;enumerated:invalid;m | ||
| 221 | |||
| 222 | #data | ||
| 223 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 224 | type="radio"/> | ||
| 225 | #errors | ||
| 226 | |||
| 227 | #data | ||
| 228 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 229 | type="radiobutton"/> | ||
| 230 | #errors | ||
| 231 | /input/@type;enumerated:invalid;m | ||
| 232 | |||
| 233 | #data | ||
| 234 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 235 | type="radiobox"/> | ||
| 236 | #errors | ||
| 237 | /input/@type;enumerated:invalid;m | ||
| 238 | |||
| 239 | #data | ||
| 240 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 241 | type="file"/> | ||
| 242 | #errors | ||
| 243 | |||
| 244 | #data | ||
| 245 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 246 | type="submit"/> | ||
| 247 | #errors | ||
| 248 | |||
| 249 | #data | ||
| 250 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 251 | type="image"/> | ||
| 252 | #errors | ||
| 253 | |||
| 254 | #data | ||
| 255 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 256 | type="img"/> | ||
| 257 | #errors | ||
| 258 | /input/@type;enumerated:invalid;m | ||
| 259 | |||
| 260 | #data | ||
| 261 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 262 | type="reset"/> | ||
| 263 | #errors | ||
| 264 | |||
| 265 | #data | ||
| 266 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 267 | type="button"/> | ||
| 268 | #errors | ||
| 269 | |||
| 270 | #data | ||
| 271 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 272 | type="hiden"/> | ||
| 273 | #errors | ||
| 274 | /input/@type;enumerated:invalid;m | ||
| 275 | |||
| 276 | #data | ||
| 277 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 278 | type="hidden "/> | ||
| 279 | #errors | ||
| 280 | /input/@type;enumerated:invalid;m | ||
| 281 | |||
| 282 | #data | ||
| 283 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 284 | type=" hidden"/> | ||
| 285 | #errors | ||
| 286 | /input/@type;enumerated:invalid;m | ||
| 287 | |||
| 288 | #data | ||
| 289 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 290 | type="add"/> | ||
| 291 | #errors | ||
| 292 | /input/@type;enumerated:invalid;m | ||
| 293 | |||
| 294 | #data | ||
| 295 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 296 | type="remove"/> | ||
| 297 | #errors | ||
| 298 | /input/@type;enumerated:invalid;m | ||
| 299 | |||
| 300 | #data | ||
| 301 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 302 | type="delete"/> | ||
| 303 | #errors | ||
| 304 | /input/@type;enumerated:invalid;m | ||
| 305 | |||
| 306 | #data | ||
| 307 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 308 | type="move"/> | ||
| 309 | #errors | ||
| 310 | /input/@type;enumerated:invalid;m | ||
| 311 | |||
| 312 | #data | ||
| 313 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 314 | type="move-up"/> | ||
| 315 | #errors | ||
| 316 | /input/@type;enumerated:invalid;m | ||
| 317 | |||
| 318 | #data | ||
| 319 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 320 | type="move-down"/> | ||
| 321 | #errors | ||
| 322 | /input/@type;enumerated:invalid;m | ||
| 323 | |||
| 324 | #data | ||
| 325 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 326 | type="textarea"/> | ||
| 327 | #errors | ||
| 328 | /input/@type;enumerated:invalid;m | ||
| 329 | |||
| 330 | #data | ||
| 331 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 332 | type=""/> | ||
| 333 | #errors | ||
| 334 | /input/@type;enumerated:invalid;m | ||
| 335 | |||
| 336 | #data escaped | ||
| 337 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 338 | type="h\u0130dden"/> | ||
| 339 | #errors | ||
| 340 | /input/@type;enumerated:invalid;m | ||
| 341 | |||
| 342 | #data escaped | ||
| 343 | <input xmlns="http://www.w3.org/1999/xhtml" | ||
| 344 | type="h\u0131dden"/> | ||
| 345 | #errors | ||
| 346 | /input/@type;enumerated:invalid;m |
| [email protected] | ViewVC Help |
| Powered by ViewVC 1.1.24 |