/* * Copyright (c) 2025, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #include "AbstractImageStyleValue.h" #include namespace Web::CSS { // https://drafts.css-houdini.org/css-typed-om-1/#reify-stylevalue GC::Ref AbstractImageStyleValue::reify(JS::Realm& realm, FlyString const&) const { // AD-HOC: There's no spec description of how to reify as a CSSImageValue. return CSSImageValue::create(realm, *this); } }