Line | Count | Source |
1 | /* | |
2 | * Copyright (c) 2023, Emil Militzer <emil.militzer@posteo.de> | |
3 | * | |
4 | * SPDX-License-Identifier: BSD-2-Clause | |
5 | */ | |
6 | ||
7 | #include "DisplayStyleValue.h" | |
8 | ||
9 | namespace Web::CSS { | |
10 | ||
11 | ValueComparingNonnullRefPtr<DisplayStyleValue> DisplayStyleValue::create(Display const& display) | |
12 | 0 | { |
13 | 0 | return adopt_ref(*new (nothrow) DisplayStyleValue(display)); |
14 | 0 | } |
15 | ||
16 | } |