mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
LibWeb: Visit CallbackType's stored EnvironmentSettingsObject reference
This commit is contained in:
parent
8331d7cd82
commit
fcd3b16d63
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <LibJS/Runtime/Object.h>
|
#include <LibJS/Runtime/Object.h>
|
||||||
|
#include <LibWeb/HTML/Scripting/Environments.h>
|
||||||
#include <LibWeb/WebIDL/CallbackType.h>
|
#include <LibWeb/WebIDL/CallbackType.h>
|
||||||
|
|
||||||
namespace Web::WebIDL {
|
namespace Web::WebIDL {
|
||||||
|
@ -20,6 +21,7 @@ void CallbackType::visit_edges(Cell::Visitor& visitor)
|
||||||
{
|
{
|
||||||
Cell::visit_edges(visitor);
|
Cell::visit_edges(visitor);
|
||||||
visitor.visit(&callback);
|
visitor.visit(&callback);
|
||||||
|
visitor.visit(callback_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue