/* * Copyright (c) 2023, Emil Militzer * * SPDX-License-Identifier: BSD-2-Clause */ #include "DisplayStyleValue.h" namespace Web::CSS { ErrorOr> DisplayStyleValue::create(Display const& display) { return adopt_nonnull_ref_or_enomem(new (nothrow) DisplayStyleValue(display)); } }