mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:34:59 +00:00

This resolves a long-standing FIXME about exposing CSS properties to JavaScript via "camelCase" names rather than "dash-separated" names.
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/CSSStyleDeclarationWrapper.h>
|
|
#include <LibWeb/DOM/Element.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
bool CSSStyleDeclarationWrapper::internal_has_property(JS::PropertyName const& name) const
|
|
{
|
|
if (!name.is_string())
|
|
return Base::internal_has_property(name);
|
|
auto property_id = CSS::property_id_from_camel_case_string(name.to_string());
|
|
return property_id != CSS::PropertyID::Invalid;
|
|
}
|
|
|
|
JS::Value CSSStyleDeclarationWrapper::internal_get(JS::PropertyName const& name, JS::Value receiver) const
|
|
{
|
|
if (!name.is_string())
|
|
return Base::internal_get(name, receiver);
|
|
auto property_id = CSS::property_id_from_camel_case_string(name.to_string());
|
|
if (property_id == CSS::PropertyID::Invalid)
|
|
return Base::internal_get(name, receiver);
|
|
if (auto maybe_property = impl().property(property_id); maybe_property.has_value())
|
|
return js_string(vm(), maybe_property->value->to_string());
|
|
return js_string(vm(), String::empty());
|
|
}
|
|
|
|
bool CSSStyleDeclarationWrapper::internal_set(JS::PropertyName const& name, JS::Value value, JS::Value receiver)
|
|
{
|
|
if (!name.is_string())
|
|
return Base::internal_set(name, value, receiver);
|
|
auto property_id = CSS::property_id_from_camel_case_string(name.to_string());
|
|
if (property_id == CSS::PropertyID::Invalid)
|
|
return Base::internal_set(name, value, receiver);
|
|
|
|
auto css_text = value.to_string(global_object());
|
|
if (vm().exception())
|
|
return false;
|
|
|
|
impl().set_property(property_id, css_text);
|
|
return true;
|
|
}
|
|
|
|
}
|