EdgeStyleValue.cpp 316 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2023, MacDue <macdue@dueutil.tech>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include "EdgeStyleValue.h"
  7. namespace Web::CSS {
  8. String EdgeStyleValue::to_string() const
  9. {
  10. return MUST(String::formatted("{} {}", CSS::to_string(m_properties.edge), m_properties.offset.to_string()));
  11. }
  12. }