1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:27:35 +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

@ -0,0 +1,7 @@
<script src="../include.js"></script>
<div contenteditable="true" id="contenteditable"></div>
<script>
test(() => {
println(document.getElementById("contenteditable").isContentEditable);
});
</script>