1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dynamic childlist of MathML elements</title>
<script src="/mathml/support/mathml-fragments.js"></script>
<link rel="help" href="https://w3c.github.io/mathml-core/#adjust-space-around-content-mpadded">
<link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript">
<link rel="help" href="https://w3c.github.io/mathml-core/#fractions-mfrac">
<link rel="help" href="https://w3c.github.io/mathml-core/#prescripts-and-tensor-indices-mmultiscripts">
<link rel="help" href="https://w3c.github.io/mathml-core/#radicals-msqrt-mroot">
<link rel="help" href="https://w3c.github.io/mathml-core/#space-mspace">
<link rel="help" href="https://w3c.github.io/mathml-core/#subscripts-and-superscripts-msub-msup-msubsup">
<link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover">
<meta name="assert" content="Dynamically modify DOM tree of some MathML elements by adding or removing children.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/mathml/support/feature-detection.js"></script>
<script src="/mathml/support/layout-comparison.js"></script>
<script>
function forceNumberOfChildren(element, count) {
while (element.children.length > count)
element.removeChild(element.lastElementChild);
for (let i = element.children.length; i < count; i++) {
if (element.tagName === "mmultiscripts" && i === 5) {
element.appendChild(FragmentHelper.createElement("mprescripts"));
} else {
let mspace = FragmentHelper.createElement("mspace");
mspace.setAttribute("width", `10px`);
mspace.setAttribute("height", `${10*(i+1)}px`);
mspace.setAttribute("style", `background: black;`);
element.appendChild(mspace);
}
}
}
setup({ explicit_done: true });
window.addEventListener("load", function() {
// force initial layout so we're sure what we're testing against
document.documentElement.getBoundingClientRect();
let reference = document.getElementById("reference");
Array.from(document.querySelectorAll("[data-title]")).forEach(element => {
test(function() {
assert_true(MathMLFeatureDetection.has_mspace());
let reference = document.getElementById(`${element.getAttribute("data-reference")}`);
forceNumberOfChildren(element, reference.children.length);
const epsilon = 1;
if (element.tagName == "mspace") {
compareSize(element, reference, epsilon);
childrenHaveEmptyBoundingClientRects(element);
childrenHaveEmptyBoundingClientRects(reference);
} else {
compareLayout(element, reference, epsilon);
}
}, `${element.getAttribute("data-title")}`);
});
done();
});
</script>
</head>
<body>
<div id="log"></div>
<p>
<math>
<mfrac id="mfrac-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</mfrac>
<mfrac id="mfrac-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mfrac>
<mfrac id="mfrac-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mfrac>
</math>
</p>
<p>
<math>
<mfrac data-reference="mfrac-reference-2" data-title="Adding missing children to mfrac">
</mfrac>
</math>
</p>
<p>
<math>
<mfrac data-reference="mfrac-reference-1" data-title="Removing child from valid mfrac">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mfrac>
</math>
</p>
<p>
<math>
<mfrac data-reference="mfrac-reference-3" data-title="Adding child to valid mfrac">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mfrac>
</math>
</p>
<p>
<math>
<mfrac data-reference="mfrac-reference-2" data-title="Removing extra child from mfrac">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mfrac>
</math>
</p>
<hr/>
<p>
<math>
<munder id="munder-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</munder>
<munder id="munder-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</munder>
<munder id="munder-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</munder>
</math>
</p>
<p>
<math>
<munder data-reference="munder-reference-2" data-title="Adding missing children to munder">
</munder>
</math>
</p>
<p>
<math>
<munder data-reference="munder-reference-1" data-title="Removing child from valid munder">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</munder>
</math>
</p>
<p>
<math>
<munder data-reference="munder-reference-3" data-title="Adding child to valid munder">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</munder>
</math>
</p>
<p>
<math>
<munder data-reference="munder-reference-2" data-title="Removing extra child from munder">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</munder>
</math>
</p>
<hr/>
<p>
<math>
<mover id="mover-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</mover>
<mover id="mover-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mover>
<mover id="mover-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mover>
</math>
</p>
<p>
<math>
<mover data-reference="mover-reference-2" data-title="Adding missing children to mover">
</mover>
</math>
</p>
<p>
<math>
<mover data-reference="mover-reference-1" data-title="Removing child from valid mover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mover>
</math>
</p>
<p>
<math>
<mover data-reference="mover-reference-3" data-title="Adding child to valid mover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mover>
</math>
</p>
<p>
<math>
<mover data-reference="mover-reference-2" data-title="Removing extra child from mover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mover>
</math>
</p>
<hr/>
<p>
<math>
<munderover id="munderover-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</munderover>
<munderover id="munderover-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</munderover>
<munderover id="munderover-reference-4">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
</munderover>
</math>
</p>
<p>
<math>
<munderover data-reference="munderover-reference-3" data-title="Adding missing children to munderover">
</munderover>
</math>
</p>
<p>
<math>
<munderover data-reference="munderover-reference-2" data-title="Removing child from valid munderover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</munderover>
</math>
</p>
<p>
<math>
<munderover data-reference="munderover-reference-4" data-title="Adding child to valid munderover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</munderover>
</math>
</p>
<p>
<math>
<munderover data-reference="munderover-reference-3" data-title="Removing extra child from munderover">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
</munderover>
</math>
</p>
<hr/>
<p>
<math>
<msub id="msub-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</msub>
<msub id="msub-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msub>
<msub id="msub-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msub>
</math>
</p>
<p>
<math>
<msub data-reference="msub-reference-2" data-title="Adding missing children to msub">
</msub>
</math>
</p>
<p>
<math>
<msub data-reference="msub-reference-1" data-title="Removing child from valid msub">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msub>
</math>
</p>
<p>
<math>
<msub data-reference="msub-reference-3" data-title="Adding child to valid msub">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msub>
</math>
</p>
<p>
<math>
<msub data-reference="msub-reference-2" data-title="Removing extra child from msub">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msub>
</math>
</p>
<hr/>
<p>
<math>
<msup id="msup-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</msup>
<msup id="msup-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msup>
<msup id="msup-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msup>
</math>
</p>
<p>
<math>
<msup data-reference="msup-reference-2" data-title="Adding missing children to msup">
</msup>
</math>
</p>
<p>
<math>
<msup data-reference="msup-reference-1" data-title="Removing child from valid msup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msup>
</math>
</p>
<p>
<math>
<msup data-reference="msup-reference-3" data-title="Adding child to valid msup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msup>
</math>
</p>
<p>
<math>
<msup data-reference="msup-reference-2" data-title="Removing extra child from msup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msup>
</math>
</p>
<hr/>
<p>
<math>
<msubsup id="msubsup-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msubsup>
<msubsup id="msubsup-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msubsup>
<msubsup id="msubsup-reference-4">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
</msubsup>
</math>
</p>
<p>
<math>
<msubsup data-reference="msubsup-reference-3" data-title="Adding missing children to msubsup">
</msubsup>
</math>
</p>
<p>
<math>
<msubsup data-reference="msubsup-reference-2" data-title="Removing child from valid msubsup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msubsup>
</math>
</p>
<p>
<math>
<msubsup data-reference="msubsup-reference-4" data-title="Adding child to valid msubsup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msubsup>
</math>
</p>
<p>
<math>
<msubsup data-reference="msubsup-reference-3" data-title="Removing extra child from msubsup">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
</msubsup>
</math>
</p>
<hr/>
<p>
<math>
<mroot id="mroot-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</mroot>
<mroot id="mroot-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mroot>
<mroot id="mroot-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mroot>
</math>
</p>
<p>
<math>
<mroot data-reference="mroot-reference-2" data-title="Adding missing children to mroot">
</mroot>
</math>
</p>
<p>
<math>
<mroot data-reference="mroot-reference-1" data-title="Removing child from valid mroot">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mroot>
</math>
</p>
<p>
<math>
<mroot data-reference="mroot-reference-3" data-title="Adding child to valid mroot">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mroot>
</math>
</p>
<p>
<math>
<mroot data-reference="mroot-reference-2" data-title="Removing extra child from mroot">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mroot>
</math>
</p>
<hr/>
<p>
<math>
<msqrt id="msqrt-reference-0">
</msqrt>
<msqrt id="msqrt-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</msqrt>
</math>
</p>
<p>
<math>
<msqrt data-reference="msqrt-reference-0" data-title="Removing children from msqrt">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</msqrt>
</math>
</p>
<p>
<math>
<msqrt data-reference="msqrt-reference-2" data-title="Adding children to msqrt">
<mspace width="10px" height="10px" style="background: black;"/>
</msqrt>
</math>
</p>
<hr/>
<p>
<math>
<mpadded id="mpadded-reference-0">
</mpadded>
<mpadded id="mpadded-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mpadded>
</math>
</p>
<p>
<math>
<mpadded data-reference="mpadded-reference-0" data-title="Removing children from mpadded">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mpadded>
</math>
</p>
<p>
<math>
<mpadded data-reference="mpadded-reference-2" data-title="Adding children to mpadded">
<mspace width="10px" height="10px" style="background: black;"/>
</mpadded>
</math>
</p>
<hr/>
<p>
<math>
<mspace id="mspace-reference-0" width="30px" height="70px" style="background: blue">
</mspace>
<mspace id="mspace-reference-2" width="30px" height="70px" style="background: green">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mspace>
</math>
</p>
<p>
<math>
<mspace data-reference="mspace-reference-0" data-title="Removing children from mspace" width="30px" height="70px" style="background: lightblue">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mspace>
</math>
</p>
<p>
<math>
<mspace data-reference="mspace-reference-2" data-title="Adding children to mspace" width="30px" height="70px" style="background: lightgreen">
<mspace width="10px" height="10px" style="background: black;"/>
</mspace>
</math>
</p>
<hr/>
<p>
<math>
<mmultiscripts id="mmultiscripts-reference-0">
</mmultiscripts>
<mmultiscripts id="mmultiscripts-reference-1">
<mspace width="10px" height="10px" style="background: black;"/>
</mmultiscripts>
<mmultiscripts id="mmultiscripts-reference-2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
</mmultiscripts>
<mmultiscripts id="mmultiscripts-reference-3">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
<mmultiscripts id="mmultiscripts-reference-6">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
<mspace width="10px" height="50px" style="background: black;"/>
<mprescripts/>
</mmultiscripts>
<mmultiscripts id="mmultiscripts-reference-8">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
<mspace width="10px" height="40px" style="background: black;"/>
<mspace width="10px" height="50px" style="background: black;"/>
<mprescripts/>
<mspace width="10px" height="70px" style="background: black;"/>
<mspace width="10px" height="80px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-0" data-title="multiscripts child count from 3 to 0">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-1" data-title="multiscripts child count from 3 to 1">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-2" data-title="multiscripts child count from 3 to 2">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-3" data-title="multiscripts child count from 0 to 3">
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-6" data-title="multiscripts child count from 3 to 6">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
<p>
<math>
<mmultiscripts data-reference="mmultiscripts-reference-8" data-title="multiscripts child count from 3 to 8">
<mspace width="10px" height="10px" style="background: black;"/>
<mspace width="10px" height="20px" style="background: black;"/>
<mspace width="10px" height="30px" style="background: black;"/>
</mmultiscripts>
</math>
</p>
</body>
</html>
|