mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +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 <LibWeb/Bindings/CSSKeyframeRulePrototype.h>
|
||||
#include <LibWeb/Bindings/Intrinsics.h>
|
||||
#include <LibWeb/CSS/CSSRuleList.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
@ -15,8 +17,10 @@ void CSSKeyframeRule::visit_edges(Visitor& visitor)
|
|||
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 {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue