1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

LibWeb: Add AnimationTimeline IDL object

This commit is contained in:
Matthew Olsson 2023-11-04 08:16:37 -07:00 committed by Andreas Kling
parent 8eeb4e0aff
commit 521f8bd5f2
7 changed files with 119 additions and 0 deletions

View file

@ -3319,6 +3319,7 @@ void generate_namespace_implementation(IDL::Interface const& interface, StringBu
generator.append(R"~~~(
// FIXME: This is a total hack until we can figure out the namespace for a given type somehow.
using namespace Web::Animations;
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
@ -3537,6 +3538,7 @@ void generate_constructor_implementation(IDL::Interface const& interface, String
generator.append(R"~~~(
// FIXME: This is a total hack until we can figure out the namespace for a given type somehow.
using namespace Web::Animations;
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
@ -3922,6 +3924,7 @@ void generate_prototype_implementation(IDL::Interface const& interface, StringBu
generator.append(R"~~~(
// FIXME: This is a total hack until we can figure out the namespace for a given type somehow.
using namespace Web::Animations;
using namespace Web::Crypto;
using namespace Web::CSS;
using namespace Web::DOM;
@ -4071,6 +4074,7 @@ void generate_iterator_prototype_implementation(IDL::Interface const& interface,
generator.append(R"~~~(
// FIXME: This is a total hack until we can figure out the namespace for a given type somehow.
using namespace Web::Animations;
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
@ -4203,6 +4207,7 @@ void generate_global_mixin_implementation(IDL::Interface const& interface, Strin
generator.append(R"~~~(
// FIXME: This is a total hack until we can figure out the namespace for a given type somehow.
using namespace Web::Animations;
using namespace Web::Crypto;
using namespace Web::CSS;
using namespace Web::DOM;