1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:18:12 +00:00

LibWeb: Add HTMLElement::is_content_editable()

This commit is contained in:
Aliaksandr Kalenik 2024-02-25 07:00:04 +01:00 committed by Andreas Kling
parent 934aa6af6a
commit e3c75d7b6f
5 changed files with 18 additions and 1 deletions

View file

@ -53,7 +53,7 @@ HTMLElement includes HTMLOrSVGElement;
interface mixin ElementContentEditable {
[CEReactions] attribute DOMString contentEditable;
// FIXME: [CEReactions] attribute DOMString enterKeyHint;
// FIXME: readonly attribute boolean isContentEditable;
readonly attribute boolean isContentEditable;
// FIXME: [CEReactions] attribute DOMString inputMode;
};