DisplayStyleValue.cpp 338 B

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