Skip to content

Commit 26969c5

Browse files
committed
[css2] Rename table box to table grid box per WG resolution. <#2501>
1 parent c0a4c57 commit 26969c5

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

css2/tables.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -550,30 +550,30 @@ <h2>17.4 <a name="model">Tables in the visual formatting model</a></h2>
550550

551551
<p>In both cases, the table generates a principal block box called the
552552
<dfn>table wrapper box</dfn> that
553-
contains the table box itself and any caption boxes (in document
553+
contains the table grid box itself and any caption boxes (in document
554554
order).
555-
The <dfn>table box</dfn> is a block-level box that contains the
555+
The <dfn>table grid box</dfn> is a block-level box that contains the
556556
table's internal table boxes.
557557
The caption boxes are block-level boxes that retain their own
558558
content, padding, margin, and border areas, and are rendered as normal
559559
block boxes inside the table wrapper box. Whether the caption boxes are placed
560-
before or after the table box is decided by the 'caption-side'
560+
before or after the table grid box is decided by the 'caption-side'
561561
property, as described below.
562562

563563
<p>The table wrapper box is a 'block' box if the table is block-level, and
564564
an 'inline-block' box if the table is inline-level. The table wrapper box
565-
establishes a block formatting context. The table box (not the
565+
establishes a block formatting context. The table grid box (not the
566566
table wrapper box) is used when doing baseline
567567
vertical alignment for an 'inline-table'. The width of the table wrapper
568-
box is the border-edge width of the table box inside it, as described
568+
box is the border-edge width of the table grid box inside it, as described
569569
by section 17.5.2. Percentages on 'width' and 'height' on the table are
570570
relative to the table wrapper box's containing block, not the table wrapper box
571571
itself.
572572

573573
<p>The computed values of properties 'position', 'float', 'margin-*',
574574
'top', 'right', 'bottom', and 'left' on the table element are used on
575-
the table wrapper box and not the table box; all other values of
576-
non-inheritable properties are used on the table box and not the table
575+
the table wrapper box and not the table grid box; all other values of
576+
non-inheritable properties are used on the table grid box and not the table
577577
wrapper box. (Where the table element's values are not used on the
578578
table and table wrapper boxes, the initial values are used instead.)
579579

@@ -604,14 +604,14 @@ <h3>17.4.1 <a name="caption-position">Caption position and alignment</a></h3>
604604

605605

606606
<p>This property specifies the position of the caption box with
607-
respect to the table box. Values have the following meanings:
607+
respect to the table grid box. Values have the following meanings:
608608

609609
<dl>
610610
<dt><strong>top</strong> <dd>Positions the caption box above the
611-
table box.
611+
table grid box.
612612

613613
<dt><strong>bottom</strong> <dd>Positions the caption box below the
614-
table box.
614+
table grid box.
615615
</dl>
616616

617617
<div class=note>
@@ -749,7 +749,7 @@ <h3>17.5.1 <a name="table-layers">Table layers and transparency</a></h3>
749749
</div>
750750

751751
<ol>
752-
<li>The lowest layer is a single plane, representing the table box
752+
<li>The lowest layer is a single plane, representing the table grid box
753753
itself. Like all boxes, it may be transparent.
754754

755755
<li>The next layer contains the column groups. Each column group

css2/tables.src

+11-11
Original file line numberDiff line numberDiff line change
@@ -491,30 +491,30 @@ table') or <a href="visuren.html#inline-level">inline-level</a> (for
491491

492492
<p>In both cases, the table generates a principal block box called the
493493
<dfn>table wrapper box</dfn> that
494-
contains the table box itself and any caption boxes (in document
494+
contains the table grid box itself and any caption boxes (in document
495495
order).
496-
The <dfn>table box</dfn> is a block-level box that contains the
496+
The <dfn>table grid box</dfn> is a block-level box that contains the
497497
table's internal table boxes.
498498
The caption boxes are block-level boxes that retain their own
499499
content, padding, margin, and border areas, and are rendered as normal
500500
block boxes inside the table wrapper box. Whether the caption boxes are placed
501-
before or after the table box is decided by the 'caption-side'
501+
before or after the table grid box is decided by the 'caption-side'
502502
property, as described below.
503503

504504
<p>The table wrapper box is a 'block' box if the table is block-level, and
505505
an 'inline-block' box if the table is inline-level. The table wrapper box
506-
establishes a block formatting context. The table box (not the
506+
establishes a block formatting context. The table grid box (not the
507507
table wrapper box) is used when doing baseline
508508
vertical alignment for an 'inline-table'. The width of the table wrapper
509-
box is the border-edge width of the table box inside it, as described
509+
box is the border-edge width of the table grid box inside it, as described
510510
by section 17.5.2. Percentages on 'width' and 'height' on the table are
511511
relative to the table wrapper box's containing block, not the table wrapper box
512512
itself.
513513

514514
<p>The computed values of properties 'position', 'float', 'margin-*',
515515
'top', 'right', 'bottom', and 'left' on the table element are used on
516-
the table wrapper box and not the table box; all other values of
517-
non-inheritable properties are used on the table box and not the table
516+
the table wrapper box and not the table grid box; all other values of
517+
non-inheritable properties are used on the table grid box and not the table
518518
wrapper box. (Where the table element's values are not used on the
519519
table and table wrapper boxes, the initial values are used instead.)
520520

@@ -530,14 +530,14 @@ it">
530530
<!-- #include src=properties/caption-side.srb -->
531531

532532
<p>This property specifies the position of the caption box with
533-
respect to the table box. Values have the following meanings:
533+
respect to the table grid box. Values have the following meanings:
534534

535535
<dl>
536536
<dt><strong>top</strong> <dd>Positions the caption box above the
537-
table box.
537+
table grid box.
538538

539539
<dt><strong>bottom</strong> <dd>Positions the caption box below the
540-
table box.
540+
table grid box.
541541
</dl>
542542

543543
<div class=note>
@@ -674,7 +674,7 @@ background.
674674
</div>
675675

676676
<ol>
677-
<li>The lowest layer is a single plane, representing the table box
677+
<li>The lowest layer is a single plane, representing the table grid box
678678
itself. Like all boxes, it may be transparent.
679679

680680
<li>The next layer contains the column groups. Each column group

0 commit comments

Comments
 (0)