StyleDeclaration.cpp 253 B

1234567891011
  1. #include <LibHTML/CSS/StyleDeclaration.h>
  2. StyleDeclaration::StyleDeclaration(const String& property_name, NonnullRefPtr<StyleValue>&& value)
  3. : m_property_name(property_name)
  4. , m_value(move(value))
  5. {
  6. }
  7. StyleDeclaration::~StyleDeclaration()
  8. {
  9. }