1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:27:43 +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

@ -303,7 +303,7 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter
}
}
} else if (parameter.type->name().is_one_of("EventListener", "NodeFilter")) {
// FIXME: Replace this with support for callback interfaces. https://heycam.github.io/webidl/#idl-callback-interface
// FIXME: Replace this with support for callback interfaces. https://webidl.spec.whatwg.org/#idl-callback-interface
if (parameter.type->name() == "EventListener")
scoped_generator.set("cpp_type", "IDLEventListener");