mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:27:43 +00:00
LibWeb: Ensure prototype of CSSKeyframe{s}Rule
This commit is contained in:
parent
ab9ae8ead3
commit
450b4336b3
2 changed files with 11 additions and 2 deletions
|
@ -5,6 +5,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "CSSKeyframeRule.h"
|
#include "CSSKeyframeRule.h"
|
||||||
|
#include <LibWeb/Bindings/CSSKeyframeRulePrototype.h>
|
||||||
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||||||
#include <LibWeb/CSS/CSSRuleList.h>
|
#include <LibWeb/CSS/CSSRuleList.h>
|
||||||
|
|
||||||
namespace Web::CSS {
|
namespace Web::CSS {
|
||||||
|
@ -15,8 +17,10 @@ void CSSKeyframeRule::visit_edges(Visitor& visitor)
|
||||||
visitor.visit(m_declarations);
|
visitor.visit(m_declarations);
|
||||||
}
|
}
|
||||||
|
|
||||||
JS::ThrowCompletionOr<void> CSSKeyframeRule::initialize(JS::Realm&)
|
JS::ThrowCompletionOr<void> CSSKeyframeRule::initialize(JS::Realm& realm)
|
||||||
{
|
{
|
||||||
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
||||||
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::CSSKeyframeRulePrototype>(realm, "CSSKeyframeRule"));
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "CSSKeyframesRule.h"
|
#include "CSSKeyframesRule.h"
|
||||||
|
#include <LibWeb/Bindings/CSSKeyframesRulePrototype.h>
|
||||||
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||||||
|
|
||||||
namespace Web::CSS {
|
namespace Web::CSS {
|
||||||
|
|
||||||
|
@ -15,8 +17,11 @@ void CSSKeyframesRule::visit_edges(Visitor& visitor)
|
||||||
visitor.visit(keyframe);
|
visitor.visit(keyframe);
|
||||||
}
|
}
|
||||||
|
|
||||||
JS::ThrowCompletionOr<void> CSSKeyframesRule::initialize(JS::Realm&)
|
JS::ThrowCompletionOr<void> CSSKeyframesRule::initialize(JS::Realm& realm)
|
||||||
{
|
{
|
||||||
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
||||||
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::CSSKeyframesRulePrototype>(realm, "CSSKeyframesRule"));
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue