Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TableColumnBox | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\HtmlToPdf\Box; |
| 6 | |
| 7 | /** |
| 8 | * `display: table-column` / `display: table-column-group`. CSS Tables 3 |
| 9 | * §4 — a column-group box carries width / background / border |
| 10 | * declarations for one or more columns; the box itself never renders. |
| 11 | * BlockLayout treats a `TableColumnBox` as a layout no-op (zero |
| 12 | * geometry contribution); BlockLayout's `collectColumnWidths` reads its |
| 13 | * cascaded `width` to drive fixed-table-layout column distribution. |
| 14 | */ |
| 15 | final class TableColumnBox extends Box {} |