mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 18:50:50 +00:00
LibWeb: Make display: foo
box constructors take the Element by pointer
This means we can instantiate them for pseudo-elements, which don't have an associated Element. They all pass it to their parent as a `Layout::Node*` and handle a lack of `layout_node()` already so this won't affect any functionality.
This commit is contained in:
parent
adaab23149
commit
7bb721bea2
Notes:
sideshowbarker
2024-07-17 18:18:06 +09:00
Author: https://github.com/AtkinsSJ
Commit: 7bb721bea2
Pull-request: https://github.com/SerenityOS/serenity/pull/12753
7 changed files with 13 additions and 13 deletions
|
@ -12,7 +12,7 @@ namespace Web::Layout {
|
|||
|
||||
class TableRowGroupBox final : public BlockContainer {
|
||||
public:
|
||||
TableRowGroupBox(DOM::Document&, DOM::Element&, NonnullRefPtr<CSS::StyleProperties>);
|
||||
TableRowGroupBox(DOM::Document&, DOM::Element*, NonnullRefPtr<CSS::StyleProperties>);
|
||||
virtual ~TableRowGroupBox() override;
|
||||
|
||||
size_t column_count() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue