mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-09 19:16:02 +00:00
LibWeb: Remove Layout::TableRowBox
Special box types for inner table boxes might conflict with special types for <button>, <input> or <label>.
This commit is contained in:
parent
578a937f94
commit
3a3a085404
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 3a3a085404
Pull-request: https://github.com/SerenityOS/serenity/pull/19127
29 changed files with 64 additions and 113 deletions
|
@ -59,7 +59,7 @@ private:
|
|||
};
|
||||
|
||||
struct Row {
|
||||
JS::NonnullGCPtr<Box> box;
|
||||
JS::NonnullGCPtr<Box const> box;
|
||||
CSSPixels base_height { 0 };
|
||||
CSSPixels reference_height { 0 };
|
||||
CSSPixels final_height { 0 };
|
||||
|
@ -67,7 +67,7 @@ private:
|
|||
};
|
||||
|
||||
struct Cell {
|
||||
JS::NonnullGCPtr<Box> box;
|
||||
JS::NonnullGCPtr<Box const> box;
|
||||
size_t column_index;
|
||||
size_t row_index;
|
||||
size_t column_span;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue