mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 16:15:08 +00:00

The WebContentView widget will now be able to react to scroll-into-view requests from the WebContent process.
10 lines
340 B
Text
10 lines
340 B
Text
endpoint WebContentClient = 90
|
|
{
|
|
DidFinishLoad(URL url) =|
|
|
DidPaint(Gfx::IntRect content_rect, i32 shbuf_id) =|
|
|
DidInvalidateContentRect(Gfx::IntRect content_rect) =|
|
|
DidChangeSelection() =|
|
|
DidLayout(Gfx::IntSize content_size) =|
|
|
DidChangeTitle(String title) =|
|
|
DidRequestScrollIntoView(Gfx::IntRect rect) =|
|
|
}
|