mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 17:15:08 +00:00
LibWeb: Let HTML::EventLoop drive the firing of resize
events
This commit is contained in:
parent
81ef2b646e
commit
6e341cd696
4 changed files with 38 additions and 11 deletions
|
@ -153,7 +153,10 @@ void EventLoop::process()
|
|||
|
||||
// FIXME: 6. For each fully active Document in docs, flush autofocus candidates for that Document if its browsing context is a top-level browsing context.
|
||||
|
||||
// FIXME: 7. For each fully active Document in docs, run the resize steps for that Document, passing in now as the timestamp. [CSSOMVIEW]
|
||||
// 7. For each fully active Document in docs, run the resize steps for that Document, passing in now as the timestamp. [CSSOMVIEW]
|
||||
for_each_fully_active_document_in_docs([&](DOM::Document& document) {
|
||||
document.run_the_resize_steps();
|
||||
});
|
||||
|
||||
// FIXME: 8. For each fully active Document in docs, run the scroll steps for that Document, passing in now as the timestamp. [CSSOMVIEW]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue