1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

LibHTML: Add stub classes for basic table layout

This class introduces LayoutTable, LayoutTableRow and LayoutTableCell.
These are produced by "display" values table, table-row and table-cell
respectively.

Note that there's no layout happening yet, I'm just adding the classes.
This commit is contained in:
Andreas Kling 2019-10-17 23:09:41 +02:00
parent 14f380f87a
commit 41896ff521
9 changed files with 107 additions and 0 deletions

View file

@ -44,6 +44,9 @@ LIBHTML_OBJS = \
Layout/LayoutListItem.o \
Layout/LayoutListItemMarker.o \
Layout/LayoutBreak.o \
Layout/LayoutTable.o \
Layout/LayoutTableRow.o \
Layout/LayoutTableCell.o \
Layout/BoxModelMetrics.o \
Layout/LineBox.o \
Layout/LineBoxFragment.o \