2023-04-26 16:05:38 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, Emil Militzer <emil.militzer@posteo.de>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "DisplayStyleValue.h"
|
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
2023-08-19 10:00:10 -03:00
|
|
|
ValueComparingNonnullRefPtr<DisplayStyleValue> DisplayStyleValue::create(Display const& display)
|
2023-04-26 16:05:38 -03:00
|
|
|
{
|
2023-08-19 10:00:10 -03:00
|
|
|
return adopt_ref(*new (nothrow) DisplayStyleValue(display));
|
2023-04-26 16:05:38 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|