mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 18:45:10 +00:00
LibWeb: Rename LayoutNode::node() => LayoutNode::dom_node()
This commit is contained in:
parent
85859544fa
commit
f358f2255f
30 changed files with 92 additions and 92 deletions
|
@ -41,8 +41,8 @@ LayoutTableCell::~LayoutTableCell()
|
|||
|
||||
size_t LayoutTableCell::colspan() const
|
||||
{
|
||||
ASSERT(node());
|
||||
return downcast<DOM::Element>(*node()).attribute(HTML::AttributeNames::colspan).to_uint().value_or(1);
|
||||
ASSERT(dom_node());
|
||||
return downcast<DOM::Element>(*dom_node()).attribute(HTML::AttributeNames::colspan).to_uint().value_or(1);
|
||||
}
|
||||
|
||||
float LayoutTableCell::width_of_logical_containing_block() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue