mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Implement basic "scroll" events at the document level
This commit is contained in:
parent
07c4bf03b5
commit
da451467b1
Notes:
sideshowbarker
2024-07-17 06:54:13 +09:00
Author: https://github.com/awesomekling
Commit: da451467b1
6 changed files with 65 additions and 1 deletions
|
@ -169,7 +169,10 @@ void EventLoop::process()
|
|||
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]
|
||||
// 8. For each fully active Document in docs, run the scroll steps for that Document, passing in now as the timestamp. [CSSOMVIEW]
|
||||
for_each_fully_active_document_in_docs([&](DOM::Document& document) {
|
||||
document.run_the_scroll_steps();
|
||||
});
|
||||
|
||||
// 9. For each fully active Document in docs, evaluate media queries and report changes for that Document, passing in now as the timestamp. [CSSOMVIEW]
|
||||
for_each_fully_active_document_in_docs([&](DOM::Document& document) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue