mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:27:44 +00:00
LibWeb: Don't crash when querying offsets of empty inline elements
Previously, querying `offsetTop` or `offsetLeft` of an inline element with no text would cause a crash.
This commit is contained in:
parent
99fbd33d7d
commit
d1226f0b15
3 changed files with 15 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
Top: 0
|
||||||
|
Left: 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<script src="../include.js"></script>
|
||||||
|
<script>
|
||||||
|
test(() => {
|
||||||
|
const element = document.getElementById("empty");
|
||||||
|
println("Top: " + element.offsetTop);
|
||||||
|
println("Left: " + element.offsetLeft);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<body>
|
||||||
|
<span id="empty"></span>
|
||||||
|
</body>
|
|
@ -158,7 +158,7 @@ CSSPixelPoint Paintable::box_type_agnostic_position() const
|
||||||
auto const& inline_paintable = static_cast<Painting::InlinePaintable const&>(*this);
|
auto const& inline_paintable = static_cast<Painting::InlinePaintable const&>(*this);
|
||||||
if (!inline_paintable.fragments().is_empty())
|
if (!inline_paintable.fragments().is_empty())
|
||||||
return inline_paintable.fragments().first().absolute_rect().location();
|
return inline_paintable.fragments().first().absolute_rect().location();
|
||||||
VERIFY_NOT_REACHED();
|
return inline_paintable.bounding_rect().location();
|
||||||
}
|
}
|
||||||
|
|
||||||
CSSPixelPoint position;
|
CSSPixelPoint position;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue