mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:38:10 +00:00
LibWeb: Update layout in HTMLElement.offset{Top,Left}
We can't report layout-dependent metrics without first ensuring that layout is up-to-date.
This commit is contained in:
parent
9e274d9501
commit
2371446952
1 changed files with 6 additions and 0 deletions
|
@ -141,6 +141,9 @@ String HTMLElement::inner_text()
|
|||
// // https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsettop
|
||||
int HTMLElement::offset_top() const
|
||||
{
|
||||
// NOTE: Ensure that layout is up-to-date before looking at metrics.
|
||||
const_cast<DOM::Document&>(document()).update_layout();
|
||||
|
||||
if (is<HTML::HTMLBodyElement>(this) || !layout_node() || !parent_element() || !parent_element()->layout_node())
|
||||
return 0;
|
||||
auto position = layout_node()->box_type_agnostic_position();
|
||||
|
@ -151,6 +154,9 @@ int HTMLElement::offset_top() const
|
|||
// https://drafts.csswg.org/cssom-view/#dom-htmlelement-offsetleft
|
||||
int HTMLElement::offset_left() const
|
||||
{
|
||||
// NOTE: Ensure that layout is up-to-date before looking at metrics.
|
||||
const_cast<DOM::Document&>(document()).update_layout();
|
||||
|
||||
if (is<HTML::HTMLBodyElement>(this) || !layout_node() || !parent_element() || !parent_element()->layout_node())
|
||||
return 0;
|
||||
auto position = layout_node()->box_type_agnostic_position();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue