1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

LibWeb: Replace 'heycam.github.io' links with 'webidl.spec.whatwg.org'

This commit is contained in:
Linus Groh 2022-09-24 16:35:12 +01:00
parent 56d8c4ff26
commit 2b2ccb3815
2 changed files with 3 additions and 3 deletions

View file

@ -12,14 +12,14 @@
namespace Web::WebIDL {
// https://heycam.github.io/webidl/#idl-callback-interface
// https://webidl.spec.whatwg.org/#idl-callback-interface
class CallbackType final : public JS::Cell {
public:
CallbackType(JS::Object& callback, HTML::EnvironmentSettingsObject& callback_context);
JS::Object& callback;
// https://heycam.github.io/webidl/#dfn-callback-context
// https://webidl.spec.whatwg.org/#dfn-callback-context
HTML::EnvironmentSettingsObject& callback_context;
private: