LibWeb: Allow custom properties in CSSStyleDeclaration.removeProperty()

This commit is contained in:
Aliaksandr Kalenik 2024-11-20 17:48:35 +01:00 committed by Alexander Kalenik
commit ac5699c8fc
Notes: github-actions[bot] 2024-11-21 12:17:14 +00:00
4 changed files with 22 additions and 14 deletions

View file

@ -16,5 +16,8 @@
document.body.appendChild(div);
println(getComputedStyle(nested).backgroundColor);
div.style.removeProperty("--redcolor");
println(getComputedStyle(nested).backgroundColor);
});
</script>