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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dynamic tabular elements</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<script src="/mathml/support/mathml-fragments.js"></script>
<link rel="help" href="https://w3c.github.io/mathml-core/#table-or-matrix-mtable">
<link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript">
<meta name="assert" content="Dynamically modify DOM tree of mtables">
<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 forceCells(mtable, rows, cols) {
while (mtable.children.length > rows)
mtable.removeChild(mtable.lastElementChild);
while (mtable.children.length < rows)
mtable.appendChild(FragmentHelper.createElement("mtr"));
for (let i = 0; i < rows; i++) {
let mtr = mtable.children[i];
while (mtr.children.length > cols)
mtr.removeChild(mtr.lastElementChild);
while (mtr.children.length < cols)
mtr.appendChild(FragmentHelper.createElement("mtd"));
for (let j = 0; j < cols; j++) {
let mtd = mtr.children[j];
while (mtd.children.length > 0)
mtd.removeChild(mtd.lastElementChild);
let mspace = FragmentHelper.createElement("mspace");
mspace.setAttribute("height", `${10*(i+1)}px`);
mspace.setAttribute("width", `${10*(j+1)}px`);
mspace.setAttribute("style", `background: black;`);
mtd.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(mtable => {
test(function() {
assert_true(MathMLFeatureDetection.has_mspace());
forceCells(mtable, 4, 3);
const epsilon = 1;
compareLayout(mtable, reference, epsilon);
}, `${mtable.getAttribute("data-title")}`);
});
done();
});
</script>
</head>
<body>
<div id="log"></div>
<p>
<math>
<mtable id="reference">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: blue;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: blue;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: blue;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: blue;"/></mtd>
<mtd><mspace height="20px" width="20px" style="background: blue;"/></mtd>
<mtd><mspace height="20px" width="30px" style="background: blue;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: blue;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: blue;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: blue;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: blue;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: blue;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: blue;"/></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Filling an empty mtable element"></mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Filling empty mtr elements">
<mtr></mtr>
<mtr></mtr>
<mtr></mtr>
<mtr></mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Filling empty mtd elements">
<mtr>
<mtd></mtd>
<mtd></mtd>
<mtd></mtd>
</mtr>
<mtr>
<mtd></mtd>
<mtd></mtd>
<mtd></mtd>
</mtr>
<mtr>
<mtd></mtd>
<mtd></mtd>
<mtd></mtd>
</mtr>
<mtr>
<mtd></mtd>
<mtd></mtd>
<mtd></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Filling an empty mtr element">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<!-- Empty mtr -->
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: black;"/></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Filling an empty mtd element">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: black;"/></mtd>
<mtd><!-- Empty --></mtd>
<mtd><mspace height="20px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: black;"/></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Adding missing elements">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<!-- Cell missing -->
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: black;"/></mtd>
<mtd><!-- Empty --></mtd>
<mtd><mspace height="20px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
</mtr>
<!-- Row missing -->
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Removing a row">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="50px" width="10px" style="background: red;"/></mtd>
<mtd><mspace height="50px" width="20px" style="background: red;"/></mtd>
<mtd><mspace height="50px" width="30px" style="background: red;"/></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Removing a column">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="40px" style="background: red;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="40px" style="background: red;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="40px" style="background: red;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="40px" style="background: red;"/></mtd>
</mtr>
</mtable>
</math>
</p>
<p>
<math>
<mtable data-title="Removing extra elements">
<mtr>
<mtd><mspace height="10px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="40px" style="background: black;"/></mtd>
<mtd><mspace height="10px" width="50px" style="background: red;"/></mtd><!-- extra mtd -->
</mtr>
<mtr>
<mtd><mspace height="20px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="20px" width="40px" style="background: black;"/><mspace height="20px" width="40px" style="background: red;"/><!-- extra child--></mtd>
</mtr>
<mtr>
<mtd><mspace height="30px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="30px" width="40px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="40px" width="10px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="20px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="30px" style="background: black;"/></mtd>
<mtd><mspace height="40px" width="40px" style="background: black;"/></mtd>
</mtr>
<mtr>
<mtd><mspace height="50px" width="10px" style="background: red;"/></mtd>
<mtd><mspace height="50px" width="20px" style="background: red;"/></mtd>
<mtd><mspace height="50px" width="30px" style="background: red;"/></mtd>
<mtd><mspace height="50px" width="40px" style="background: red;"/></mtd>
</mtr> <!-- extra row -->
</mtable>
</math>
</p>
</body>
</html>
|