StyleProperty.cpp 254 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/CSS/StyleProperty.h>
  7. #include <LibWeb/CSS/StyleValue.h>
  8. namespace Web::CSS {
  9. StyleProperty::~StyleProperty() = default;
  10. }