Parent Directory
|
Revision Log
++ whatpm/t/dom-conformance/ChangeLog 23 Aug 2009 08:13:30 -0000 * html-datatemplate.dat, html-repetitions.dat, html-forms-1.dat, html-form-input-1.dat, html-form-button.dat, html-form-select.dat, html-form-textarea.dat, html-texts-1.dat, html-interactive-1.dat: Revised test results related to the removed datatemplate and repetition template feature (HTML5 revision 2319). 2009-08-23 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/ContentChecker/ChangeLog 23 Aug 2009 08:04:48 -0000 * HTML.pm: Marked datatemplate and repetition template features as dropped (HTML5 revision 2319). 2009-08-23 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | |
| 2 | #data | ||
| 3 | <select xmlns="http://www.w3.org/1999/xhtml"></select> | ||
| 4 | #errors | ||
| 5 | |||
| 6 | #data | ||
| 7 | <select xmlns="http://www.w3.org/1999/xhtml"> </select> | ||
| 8 | #errors | ||
| 9 | |||
| 10 | #data | ||
| 11 | <select xmlns="http://www.w3.org/1999/xhtml">xx</select> | ||
| 12 | #errors | ||
| 13 | /select/"xx";character not allowed;m | ||
| 14 | |||
| 15 | #data | ||
| 16 | <select xmlns="http://www.w3.org/1999/xhtml"><p>x</p></select> | ||
| 17 | #errors | ||
| 18 | /select/p;element not allowed;m | ||
| 19 | |||
| 20 | #data | ||
| 21 | <select xmlns="http://www.w3.org/1999/xhtml"><ins>x</ins></select> | ||
| 22 | #errors | ||
| 23 | /select/ins;element not allowed;m | ||
| 24 | /select/ins/"x";character not allowed;m | ||
| 25 | |||
| 26 | #data | ||
| 27 | <select xmlns="http://www.w3.org/1999/xhtml"><a>aa</a></select> | ||
| 28 | #errors | ||
| 29 | /select/a;element not allowed;m | ||
| 30 | /select/a/"aa";character not allowed;m | ||
| 31 | |||
| 32 | #data | ||
| 33 | <select xmlns="http://www.w3.org/1999/xhtml"><img src="" alt="x"/></select> | ||
| 34 | #errors | ||
| 35 | /select/img;element not allowed;m | ||
| 36 | |||
| 37 | #data | ||
| 38 | <select xmlns="http://www.w3.org/1999/xhtml"><option>x</option></select> | ||
| 39 | #errors | ||
| 40 | |||
| 41 | #data | ||
| 42 | <select xmlns="http://www.w3.org/1999/xhtml"><option>x</option>y</select> | ||
| 43 | #errors | ||
| 44 | /select/"y";character not allowed;m | ||
| 45 | |||
| 46 | #data | ||
| 47 | <select xmlns="http://www.w3.org/1999/xhtml"><option>x</option><em>y</em></select> | ||
| 48 | #errors | ||
| 49 | /select/em;element not allowed;m | ||
| 50 | |||
| 51 | #data | ||
| 52 | <select xmlns="http://www.w3.org/1999/xhtml"><nest/></select> | ||
| 53 | #errors | ||
| 54 | /select/nest;element not allowed;m | ||
| 55 | wakaba | 1.2 | /select/nest;element not defined;m |
| 56 | wakaba | 1.1 | |
| 57 | #data | ||
| 58 | <select xmlns="http://www.w3.org/1999/xhtml"><option/><optgroup/></select> | ||
| 59 | #errors | ||
| 60 | /select/optgroup;attribute missing;label;m | ||
| 61 | |||
| 62 | #data | ||
| 63 | <select xmlns="http://www.w3.org/1999/xhtml"><optgroup/></select> | ||
| 64 | #errors | ||
| 65 | /select/optgroup;attribute missing;label;m | ||
| 66 | |||
| 67 | #data | ||
| 68 | <select xmlns="http://www.w3.org/1999/xhtml"><optgroup/> | ||
| 69 | <option/><optgroup/></select> | ||
| 70 | #errors | ||
| 71 | /select/optgroup;attribute missing;label;m | ||
| 72 | /select/optgroup;attribute missing;label;m | ||
| 73 | |||
| 74 | #data | ||
| 75 | <em xmlns="http://www.w3.org/1999/xhtml"><select/></em> | ||
| 76 | #errors | ||
| 77 | /em;no significant content;s | ||
| 78 | |||
| 79 | #data | ||
| 80 | <em xmlns="http://www.w3.org/1999/xhtml"><select><option>x</option></select></em> | ||
| 81 | #errors | ||
| 82 | |||
| 83 | #data | ||
| 84 | <em xmlns="http://www.w3.org/1999/xhtml"><select>x</select></em> | ||
| 85 | #errors | ||
| 86 | /em/select/"x";character not allowed;m | ||
| 87 | |||
| 88 | #data | ||
| 89 | <div xmlns="http://www.w3.org/1999/xhtml"><select/></div> | ||
| 90 | #errors | ||
| 91 | /div;no significant content;s | ||
| 92 | |||
| 93 | #data | ||
| 94 | <ins xmlns="http://www.w3.org/1999/xhtml"><select/></ins> | ||
| 95 | #errors | ||
| 96 | /ins;no significant content;s | ||
| 97 | |||
| 98 | #data | ||
| 99 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 100 | multiple=""/> | ||
| 101 | #errors | ||
| 102 | |||
| 103 | #data | ||
| 104 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 105 | multiple="multiple"/> | ||
| 106 | #errors | ||
| 107 | |||
| 108 | #data | ||
| 109 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 110 | multiple="Multiple"/> | ||
| 111 | #errors | ||
| 112 | |||
| 113 | #data | ||
| 114 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 115 | multiple=" multiple"/> | ||
| 116 | #errors | ||
| 117 | /select/@multiple;boolean:invalid;m | ||
| 118 | |||
| 119 | #data | ||
| 120 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 121 | multiple="yes"/> | ||
| 122 | #errors | ||
| 123 | /select/@multiple;boolean:invalid;m | ||
| 124 | |||
| 125 | #data | ||
| 126 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 127 | size=""/> | ||
| 128 | #errors | ||
| 129 | /select/@size;nninteger:syntax error;m | ||
| 130 | |||
| 131 | #data | ||
| 132 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 133 | multiple="" size="10"/> | ||
| 134 | #errors | ||
| 135 | |||
| 136 | #data | ||
| 137 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 138 | size="10"/> | ||
| 139 | #errors | ||
| 140 | |||
| 141 | #data | ||
| 142 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 143 | size="0"/> | ||
| 144 | #errors | ||
| 145 | /select/@size;nninteger:out of range;m | ||
| 146 | |||
| 147 | #data | ||
| 148 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 149 | size="1"/> | ||
| 150 | #errors | ||
| 151 | |||
| 152 | #data | ||
| 153 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 154 | size="2"/> | ||
| 155 | #errors | ||
| 156 | |||
| 157 | #data | ||
| 158 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 159 | size="10000"/> | ||
| 160 | #errors | ||
| 161 | |||
| 162 | #data | ||
| 163 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 164 | size="00010"/> | ||
| 165 | #errors | ||
| 166 | |||
| 167 | #data | ||
| 168 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 169 | size="1.2"/> | ||
| 170 | #errors | ||
| 171 | /select/@size;nninteger:syntax error;m | ||
| 172 | |||
| 173 | #data | ||
| 174 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 175 | size="-0"/> | ||
| 176 | #errors | ||
| 177 | /select/@size;nninteger:syntax error;m | ||
| 178 | |||
| 179 | #data | ||
| 180 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 181 | size="10.0"/> | ||
| 182 | #errors | ||
| 183 | /select/@size;nninteger:syntax error;m | ||
| 184 | |||
| 185 | #data | ||
| 186 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 187 | size="+10"/> | ||
| 188 | #errors | ||
| 189 | /select/@size;nninteger:syntax error;m | ||
| 190 | |||
| 191 | #data | ||
| 192 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 193 | disabled=""/> | ||
| 194 | #errors | ||
| 195 | |||
| 196 | #data | ||
| 197 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 198 | disabled="disabled"/> | ||
| 199 | #errors | ||
| 200 | |||
| 201 | #data | ||
| 202 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 203 | disabled="Disabled"/> | ||
| 204 | #errors | ||
| 205 | |||
| 206 | #data | ||
| 207 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 208 | disabled=" disabled"/> | ||
| 209 | #errors | ||
| 210 | /select/@disabled;boolean:invalid;m | ||
| 211 | |||
| 212 | #data | ||
| 213 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 214 | disabled="yes"/> | ||
| 215 | #errors | ||
| 216 | /select/@disabled;boolean:invalid;m | ||
| 217 | |||
| 218 | #data | ||
| 219 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 220 | autofocus=""/> | ||
| 221 | #errors | ||
| 222 | |||
| 223 | #data | ||
| 224 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 225 | autofocus="autofocus"/> | ||
| 226 | #errors | ||
| 227 | |||
| 228 | #data | ||
| 229 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 230 | autofocus="AutoFocus"/> | ||
| 231 | #errors | ||
| 232 | |||
| 233 | #data | ||
| 234 | <select xmlns="http://www.w3.org/1999/xhtml" | ||
| 235 | autofocus="no"/> | ||
| 236 | #errors | ||
| 237 | /select/@autofocus;boolean:invalid;m | ||
| 238 | |||
| 239 | #data | ||
| 240 | <optgroup xmlns="http://www.w3.org/1999/xhtml"></optgroup> | ||
| 241 | #errors | ||
| 242 | /optgroup;attribute missing;label;m | ||
| 243 | |||
| 244 | #data | ||
| 245 | <optgroup xmlns="http://www.w3.org/1999/xhtml"> </optgroup> | ||
| 246 | #errors | ||
| 247 | /optgroup;attribute missing;label;m | ||
| 248 | |||
| 249 | #data | ||
| 250 | <optgroup xmlns="http://www.w3.org/1999/xhtml">xxx</optgroup> | ||
| 251 | #errors | ||
| 252 | /optgroup/"xxx";character not allowed;m | ||
| 253 | /optgroup;attribute missing;label;m | ||
| 254 | |||
| 255 | #data | ||
| 256 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/></optgroup> | ||
| 257 | #errors | ||
| 258 | /optgroup;attribute missing;label;m | ||
| 259 | |||
| 260 | #data | ||
| 261 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/><option/></optgroup> | ||
| 262 | #errors | ||
| 263 | /optgroup;attribute missing;label;m | ||
| 264 | |||
| 265 | #data | ||
| 266 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/> | ||
| 267 | <option/></optgroup> | ||
| 268 | #errors | ||
| 269 | /optgroup;attribute missing;label;m | ||
| 270 | |||
| 271 | #data | ||
| 272 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/>x</optgroup> | ||
| 273 | #errors | ||
| 274 | /optgroup/"x";character not allowed;m | ||
| 275 | /optgroup;attribute missing;label;m | ||
| 276 | |||
| 277 | #data | ||
| 278 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/><p/></optgroup> | ||
| 279 | #errors | ||
| 280 | /optgroup/p;element not allowed;m | ||
| 281 | /optgroup/p;no significant content;s | ||
| 282 | /optgroup;attribute missing;label;m | ||
| 283 | |||
| 284 | #data | ||
| 285 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/><span>x</span></optgroup> | ||
| 286 | #errors | ||
| 287 | /optgroup/span;element not allowed;m | ||
| 288 | /optgroup;attribute missing;label;m | ||
| 289 | |||
| 290 | #data | ||
| 291 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><optgroup/></optgroup> | ||
| 292 | #errors | ||
| 293 | /optgroup/optgroup;element not allowed;m | ||
| 294 | /optgroup;attribute missing;label;m | ||
| 295 | /optgroup/optgroup;attribute missing;label;m | ||
| 296 | |||
| 297 | #data | ||
| 298 | <optgroup xmlns="http://www.w3.org/1999/xhtml"><option/><optgroup/></optgroup> | ||
| 299 | #errors | ||
| 300 | /optgroup/optgroup;element not allowed;m | ||
| 301 | /optgroup;attribute missing;label;m | ||
| 302 | /optgroup/optgroup;attribute missing;label;m | ||
| 303 | |||
| 304 | #data | ||
| 305 | <em xmlns="http://www.w3.org/1999/xhtml"><optgroup/></em> | ||
| 306 | #errors | ||
| 307 | /em;no significant content;s | ||
| 308 | /em/optgroup;element not allowed:phrasing;m | ||
| 309 | /em/optgroup;attribute missing;label;m | ||
| 310 | |||
| 311 | #data | ||
| 312 | <div xmlns="http://www.w3.org/1999/xhtml"><optgroup/></div> | ||
| 313 | #errors | ||
| 314 | /div;no significant content;s | ||
| 315 | /div/optgroup;element not allowed:flow;m | ||
| 316 | /div/optgroup;attribute missing;label;m | ||
| 317 | |||
| 318 | #data | ||
| 319 | <br xmlns="http://www.w3.org/1999/xhtml"><optgroup/></br> | ||
| 320 | #errors | ||
| 321 | /br/optgroup;element not allowed:empty;m | ||
| 322 | /br/optgroup;attribute missing;label;m | ||
| 323 | |||
| 324 | #data | ||
| 325 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 326 | label=""/> | ||
| 327 | #errors | ||
| 328 | |||
| 329 | #data | ||
| 330 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 331 | label="xxx"/> | ||
| 332 | #errors | ||
| 333 | |||
| 334 | #data | ||
| 335 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 336 | label="" disabled=""/> | ||
| 337 | #errors | ||
| 338 | |||
| 339 | #data | ||
| 340 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 341 | label="" disabled="disabled"/> | ||
| 342 | #errors | ||
| 343 | |||
| 344 | #data | ||
| 345 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 346 | label="" disabled="DisAbled"/> | ||
| 347 | #errors | ||
| 348 | |||
| 349 | #data | ||
| 350 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 351 | label="" disabled=" dis "/> | ||
| 352 | #errors | ||
| 353 | /optgroup/@disabled;boolean:invalid;m | ||
| 354 | |||
| 355 | #data | ||
| 356 | <optgroup xmlns="http://www.w3.org/1999/xhtml" | ||
| 357 | label="" disabled="enabled"/> | ||
| 358 | #errors | ||
| 359 | /optgroup/@disabled;boolean:invalid;m | ||
| 360 | |||
| 361 | #data | ||
| 362 | <option xmlns="http://www.w3.org/1999/xhtml"></option> | ||
| 363 | #errors | ||
| 364 | |||
| 365 | #data | ||
| 366 | <option xmlns="http://www.w3.org/1999/xhtml"> </option> | ||
| 367 | #errors | ||
| 368 | |||
| 369 | #data | ||
| 370 | <option xmlns="http://www.w3.org/1999/xhtml">xxx</option> | ||
| 371 | #errors | ||
| 372 | |||
| 373 | #data | ||
| 374 | <option xmlns="http://www.w3.org/1999/xhtml"><span>xx</span></option> | ||
| 375 | #errors | ||
| 376 | /option/span;element not allowed:text;m | ||
| 377 | |||
| 378 | #data | ||
| 379 | <option xmlns="http://www.w3.org/1999/xhtml">aa<em>bb</em></option> | ||
| 380 | #errors | ||
| 381 | /option/em;element not allowed:text;m | ||
| 382 | |||
| 383 | #data | ||
| 384 | <option xmlns="http://www.w3.org/1999/xhtml"><option/></option> | ||
| 385 | #errors | ||
| 386 | /option/option;element not allowed:text;m | ||
| 387 | |||
| 388 | #data | ||
| 389 | <em xmlns="http://www.w3.org/1999/xhtml"><option/></em> | ||
| 390 | #errors | ||
| 391 | /em/option;element not allowed:phrasing;m | ||
| 392 | /em;no significant content;s | ||
| 393 | |||
| 394 | #data | ||
| 395 | <div xmlns="http://www.w3.org/1999/xhtml"><option/></div> | ||
| 396 | #errors | ||
| 397 | /div/option;element not allowed:flow;m | ||
| 398 | /div;no significant content;s | ||
| 399 | |||
| 400 | #data | ||
| 401 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 402 | disabled="" | ||
| 403 | >x</option> | ||
| 404 | #errors | ||
| 405 | |||
| 406 | #data | ||
| 407 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 408 | disabled="disabled" | ||
| 409 | >x</option> | ||
| 410 | #errors | ||
| 411 | |||
| 412 | #data | ||
| 413 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 414 | disabled="DisableD" | ||
| 415 | >x</option> | ||
| 416 | #errors | ||
| 417 | |||
| 418 | #data | ||
| 419 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 420 | disabled="disabled " | ||
| 421 | >x</option> | ||
| 422 | #errors | ||
| 423 | /option/@disabled;boolean:invalid;m | ||
| 424 | |||
| 425 | #data | ||
| 426 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 427 | disabled="none" | ||
| 428 | >x</option> | ||
| 429 | #errors | ||
| 430 | /option/@disabled;boolean:invalid;m | ||
| 431 | |||
| 432 | #data | ||
| 433 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 434 | label="" | ||
| 435 | >x</option> | ||
| 436 | #errors | ||
| 437 | |||
| 438 | #data | ||
| 439 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 440 | value="" | ||
| 441 | >x</option> | ||
| 442 | #errors | ||
| 443 | |||
| 444 | #data | ||
| 445 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 446 | value="abcdefg" | ||
| 447 | >x</option> | ||
| 448 | #errors | ||
| 449 | |||
| 450 | #data | ||
| 451 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 452 | selected="" | ||
| 453 | >x</option> | ||
| 454 | #errors | ||
| 455 | |||
| 456 | #data | ||
| 457 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 458 | selected="selected" | ||
| 459 | >x</option> | ||
| 460 | #errors | ||
| 461 | |||
| 462 | #data | ||
| 463 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 464 | selected="SeLECTED" | ||
| 465 | >x</option> | ||
| 466 | #errors | ||
| 467 | |||
| 468 | #data | ||
| 469 | <option xmlns="http://www.w3.org/1999/xhtml" | ||
| 470 | selected="select" | ||
| 471 | >x</option> | ||
| 472 | #errors | ||
| 473 | /option/@selected;boolean:invalid;m |
| [email protected] | ViewVC Help |
| Powered by ViewVC 1.1.24 |