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