mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
LibWeb: Allow custom properties in CSSStyleDeclaration.removeProperty()
This commit is contained in:
parent
ce26e5d757
commit
ac5699c8fc
Notes:
github-actions[bot]
2024-11-21 12:17:14 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/ac5699c8fc3 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2460 Reviewed-by: https://github.com/AtkinsSJ ✅
4 changed files with 22 additions and 14 deletions
|
@ -119,7 +119,7 @@ WebIDL::ExceptionOr<void> PropertyOwningCSSStyleDeclaration::set_property(String
|
||||||
|
|
||||||
// 3. If value is the empty string, invoke removeProperty() with property as argument and return.
|
// 3. If value is the empty string, invoke removeProperty() with property as argument and return.
|
||||||
if (value.is_empty()) {
|
if (value.is_empty()) {
|
||||||
MUST(remove_property(property_id));
|
MUST(remove_property(property_name));
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,8 +177,12 @@ WebIDL::ExceptionOr<void> PropertyOwningCSSStyleDeclaration::set_property(String
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-removeproperty
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-removeproperty
|
||||||
WebIDL::ExceptionOr<String> PropertyOwningCSSStyleDeclaration::remove_property(PropertyID property_id)
|
WebIDL::ExceptionOr<String> PropertyOwningCSSStyleDeclaration::remove_property(StringView property_name)
|
||||||
{
|
{
|
||||||
|
auto property_id = property_id_from_string(property_name);
|
||||||
|
if (!property_id.has_value())
|
||||||
|
return String {};
|
||||||
|
|
||||||
// 1. If the computed flag is set, then throw a NoModificationAllowedError exception.
|
// 1. If the computed flag is set, then throw a NoModificationAllowedError exception.
|
||||||
// NOTE: This is handled by the virtual override in ResolvedCSSStyleDeclaration.
|
// NOTE: This is handled by the virtual override in ResolvedCSSStyleDeclaration.
|
||||||
|
|
||||||
|
@ -186,8 +190,7 @@ WebIDL::ExceptionOr<String> PropertyOwningCSSStyleDeclaration::remove_property(P
|
||||||
// NOTE: We've already converted it to a PropertyID enum value.
|
// NOTE: We've already converted it to a PropertyID enum value.
|
||||||
|
|
||||||
// 3. Let value be the return value of invoking getPropertyValue() with property as argument.
|
// 3. Let value be the return value of invoking getPropertyValue() with property as argument.
|
||||||
// FIXME: The trip through string_from_property_id() here is silly.
|
auto value = get_property_value(property_name);
|
||||||
auto value = get_property_value(string_from_property_id(property_id));
|
|
||||||
|
|
||||||
// 4. Let removed be false.
|
// 4. Let removed be false.
|
||||||
bool removed = false;
|
bool removed = false;
|
||||||
|
@ -197,7 +200,12 @@ WebIDL::ExceptionOr<String> PropertyOwningCSSStyleDeclaration::remove_property(P
|
||||||
// 2. Remove that CSS declaration and let removed be true.
|
// 2. Remove that CSS declaration and let removed be true.
|
||||||
|
|
||||||
// 6. Otherwise, if property is a case-sensitive match for a property name of a CSS declaration in the declarations, remove that CSS declaration and let removed be true.
|
// 6. Otherwise, if property is a case-sensitive match for a property name of a CSS declaration in the declarations, remove that CSS declaration and let removed be true.
|
||||||
|
if (property_id == PropertyID::Custom) {
|
||||||
|
auto custom_name = FlyString::from_utf8_without_validation(property_name.bytes());
|
||||||
|
removed = m_custom_properties.remove(custom_name);
|
||||||
|
} else {
|
||||||
removed = m_properties.remove_first_matching([&](auto& entry) { return entry.property_id == property_id; });
|
removed = m_properties.remove_first_matching([&](auto& entry) { return entry.property_id == property_id; });
|
||||||
|
}
|
||||||
|
|
||||||
// 7. If removed is true, Update style attribute for the CSS declaration block.
|
// 7. If removed is true, Update style attribute for the CSS declaration block.
|
||||||
if (removed)
|
if (removed)
|
||||||
|
@ -321,12 +329,9 @@ WebIDL::ExceptionOr<void> CSSStyleDeclaration::set_property(PropertyID property_
|
||||||
return set_property(string_from_property_id(property_id), css_text, priority);
|
return set_property(string_from_property_id(property_id), css_text, priority);
|
||||||
}
|
}
|
||||||
|
|
||||||
WebIDL::ExceptionOr<String> CSSStyleDeclaration::remove_property(StringView property_name)
|
WebIDL::ExceptionOr<String> CSSStyleDeclaration::remove_property(PropertyID property_name)
|
||||||
{
|
{
|
||||||
auto property_id = property_id_from_string(property_name);
|
return remove_property(string_from_property_id(property_name));
|
||||||
if (!property_id.has_value())
|
|
||||||
return String {};
|
|
||||||
return remove_property(property_id.value());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-csstext
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-csstext
|
||||||
|
|
|
@ -32,10 +32,10 @@ public:
|
||||||
virtual Optional<StyleProperty> custom_property(FlyString const& custom_property_name) const = 0;
|
virtual Optional<StyleProperty> custom_property(FlyString const& custom_property_name) const = 0;
|
||||||
|
|
||||||
virtual WebIDL::ExceptionOr<void> set_property(PropertyID, StringView css_text, StringView priority = ""sv);
|
virtual WebIDL::ExceptionOr<void> set_property(PropertyID, StringView css_text, StringView priority = ""sv);
|
||||||
virtual WebIDL::ExceptionOr<String> remove_property(PropertyID) = 0;
|
virtual WebIDL::ExceptionOr<String> remove_property(PropertyID);
|
||||||
|
|
||||||
virtual WebIDL::ExceptionOr<void> set_property(StringView property_name, StringView css_text, StringView priority) = 0;
|
virtual WebIDL::ExceptionOr<void> set_property(StringView property_name, StringView css_text, StringView priority) = 0;
|
||||||
virtual WebIDL::ExceptionOr<String> remove_property(StringView property_name);
|
virtual WebIDL::ExceptionOr<String> remove_property(StringView property_name) = 0;
|
||||||
|
|
||||||
String get_property_value(StringView property) const;
|
String get_property_value(StringView property) const;
|
||||||
StringView get_property_priority(StringView property) const;
|
StringView get_property_priority(StringView property) const;
|
||||||
|
@ -79,8 +79,7 @@ public:
|
||||||
virtual Optional<StyleProperty> custom_property(FlyString const& custom_property_name) const override { return m_custom_properties.get(custom_property_name); }
|
virtual Optional<StyleProperty> custom_property(FlyString const& custom_property_name) const override { return m_custom_properties.get(custom_property_name); }
|
||||||
|
|
||||||
virtual WebIDL::ExceptionOr<void> set_property(StringView property_name, StringView css_text, StringView priority) override;
|
virtual WebIDL::ExceptionOr<void> set_property(StringView property_name, StringView css_text, StringView priority) override;
|
||||||
virtual WebIDL::ExceptionOr<String> remove_property(PropertyID) override;
|
virtual WebIDL::ExceptionOr<String> remove_property(StringView property_name) override;
|
||||||
|
|
||||||
Vector<StyleProperty> const& properties() const { return m_properties; }
|
Vector<StyleProperty> const& properties() const { return m_properties; }
|
||||||
HashMap<FlyString, StyleProperty> const& custom_properties() const { return m_custom_properties; }
|
HashMap<FlyString, StyleProperty> const& custom_properties() const { return m_custom_properties; }
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
style.getPropertyValue(--redcolor)=red
|
style.getPropertyValue(--redcolor)=red
|
||||||
rgb(255, 0, 0)
|
rgb(255, 0, 0)
|
||||||
|
rgba(0, 0, 0, 0)
|
||||||
|
|
|
@ -16,5 +16,8 @@
|
||||||
document.body.appendChild(div);
|
document.body.appendChild(div);
|
||||||
|
|
||||||
println(getComputedStyle(nested).backgroundColor);
|
println(getComputedStyle(nested).backgroundColor);
|
||||||
|
|
||||||
|
div.style.removeProperty("--redcolor");
|
||||||
|
println(getComputedStyle(nested).backgroundColor);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
Loading…
Reference in a new issue