1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

LibWeb: Implement document.designMode

Setting this attribute to "on" makes the entire document editable.
This commit is contained in:
Tim Ledbetter 2024-02-10 15:23:19 +00:00 committed by Andreas Kling
parent c9fb3e07d2
commit 774119bb57
5 changed files with 73 additions and 0 deletions

View file

@ -114,6 +114,8 @@ interface Document : Node {
Selection? getSelection();
[CEReactions] attribute DOMString designMode;
// https://www.w3.org/TR/web-animations-1/#extensions-to-the-document-interface
readonly attribute DocumentTimeline timeline;