You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if each box in the sequence is consecutive to the one before it in the sequence.
270
270
271
-
<dt><dfn id="table-slot">slot</dfn>
271
+
<dt><dfn id="table-grid">table grid</dfn>
272
272
<dd>
273
-
A <a>slot</a> is an available space created
274
-
by the intersection of a row and a column in the table grid.
273
+
A matrix
274
+
containing as many <dfn id="row">rows</dfn> and <dfn id="column">columns</dfn>
275
+
as needed to describe the position of all the <a>table-rows</a> and <a>table-cells</a> of a <a>table-root</a>,
276
+
as determined by the <a href="#dimensioning-the-row-column-grid">grid-dimensioning algorithm</a>.
277
+
278
+
Each row of the grid might correspond to a <a>table-row</a>, and each column to a <a>table-column</a>.
279
+
280
+
<dt><dfn id="slot">slot</dfn> of the table grid.
281
+
<dd>
282
+
A <a>slot</a><code>(r,c)</code> is an available space created
283
+
by the intersection of a row <code>r</code> and a column <code>c</code> in the <a>table grid</a>.
284
+
285
+
Each slot of the table grid is covered by at least one <a>table-cell</a> (<a href="#missing-cells-fixup">some of them anonymous</a>), and at most two.
286
+
Each table-cell of a table-root covers at least one slot.
287
+
288
+
Table-cells that cover more than one slot do so densely,
289
+
meaning the set of slots it covers can always be described as a set of four strictly-positive integers <code>(rowMin, colMin, rowSpan, colSpan)</code>
290
+
such that a slot <code>(r,c)</code> is covered by the table-cell
291
+
if and only if <code>r</code> lies in the interval between <code>rowMin</code> (included) and <code>rowMin+rowSpan</code> (not included),
292
+
and <code>c</code> lies in the interval between <code>colMin</code> (included) and <code>colMin+colSpan</code> (not included);
293
+
294
+
Such table-cell is said to <dfn>originate</dfn> from row <code>rowMin</code> and column <code>colMin</code> (and, by extension, the corresponding table-tracks).
295
+
296
+
Such table-cell is said to <dfn>span</dfn> all rows <code>r</code> and columns <code>c</code> matching the above condition (and, by extension, the corresponding table-tracks).
0 commit comments