mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Update spec comments for dialog, popover and close watcher
This commit is contained in:
parent
0bb0061915
commit
391a08bf17
Notes:
github-actions[bot]
2025-01-25 03:41:07 +00:00
Author: https://github.com/lukewarlow
Commit: 391a08bf17
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3354
Reviewed-by: https://github.com/tcl3 ✅
6 changed files with 165 additions and 114 deletions
|
@ -75,11 +75,11 @@ bool CloseWatcherManager::process_close_watchers()
|
|||
}
|
||||
// 2.2 For each closeWatcher of group, in reverse order:
|
||||
for (auto it = group_copy.rbegin(); it != group_copy.rend(); ++it) {
|
||||
// 2.1.1 Set processedACloseWatcher to true.
|
||||
// FIXME: 2.2.1 If the result of running closeWatcher's get enabled state is true, set processedACloseWatcher to true.
|
||||
processed_a_close_watcher = true;
|
||||
// 2.1.2 Let shouldProceed be the result of requesting to close closeWatcher.
|
||||
// 2.2.2 Let shouldProceed be the result of requesting to close closeWatcher with true.
|
||||
bool should_proceed = (*it)->request_close();
|
||||
// 2.1.3 If shouldProceed is false, then break;
|
||||
// 2.2.3 If shouldProceed is false, then break;
|
||||
if (!should_proceed)
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue