1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 20:25:07 +00:00

LibWeb: Add missing spec comment in focusing logic

This commit is contained in:
Nukiloco 2022-03-23 10:21:30 -05:00 committed by Tim Flynn
parent 626ea5007a
commit b47bd95087

View file

@ -363,6 +363,7 @@ static void run_focusing_steps(DOM::Node* new_focus_target, DOM::Node* fallback_
// 7. Let new chain be the focus chain of new focus target.
auto new_chain = focus_chain(new_focus_target);
// 8. Run the focus update steps with old chain, new chain, and new focus target respectively.
run_focus_update_steps(old_chain, new_chain, *new_focus_target);
}