mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb: Remove BrowsingContext::scroll_to()
Let's use navigable directly instead of going through browsing context to request a scroll.
This commit is contained in:
committed by
Andreas Kling
parent
0c92c80544
commit
7ad0767aa0
@@ -1879,8 +1879,8 @@ void Document::scroll_to_the_fragment()
|
||||
void Document::scroll_to_the_beginning_of_the_document()
|
||||
{
|
||||
// FIXME: Actually implement this algorithm
|
||||
if (auto browsing_context = this->browsing_context())
|
||||
browsing_context->scroll_to({ 0, 0 });
|
||||
if (auto navigable = this->navigable())
|
||||
navigable->perform_scroll_of_viewport({ 0, 0 });
|
||||
}
|
||||
|
||||
StringView Document::ready_state() const
|
||||
|
||||
Reference in New Issue
Block a user