ladybird/Tests/LibWeb/Text/expected/Editing
Jelle Raaijmakers e029e785d2 LibWeb: Convert Editing API internals to UTF-16
Both sides of the Editing internals now have to deal with some awkward
converting between UTF-8 and UTF-16, but the upside is that it
immediately exposed an issue with the `insertText` command: instead of
dealing with code units, it was iterating over code points causing the
selection to be updated only once instead of twice. This resulted in the
final selection potentially ending up in between a surrogate pair.

Fixes #5547 (pasting/typing surrogate pairs).
2025-07-24 07:18:25 -04:00
..
beforeinput-event.txt LibWeb: Send a beforeinput event for pasting 2025-07-23 22:04:45 +02:00
case-insensitive-strikethrough-command.txt LibWeb/Editing: Handle no active range in queryCommandState 2025-05-26 23:36:44 +02:00
execCommand-backColor.txt LibWeb: Return true if invalid color was provided to an editing command 2025-01-24 23:53:26 +01:00
execCommand-bold.txt
execCommand-case-insensitivity.txt LibWeb: Treat execCommand command names as case insensitive 2025-02-08 07:30:27 -05:00
execCommand-createLink.txt
execCommand-delete.txt
execCommand-fontName.txt LibWeb: Apply HTMLFontElement's face attribute's presentational hint 2025-04-01 03:50:30 +02:00
execCommand-fontSize.txt
execCommand-foreColor.txt
execCommand-formatBlock.txt
execCommand-forwardDelete.txt LibWeb: Align editing whitespace canonicalization with other browsers 2025-04-29 15:30:34 +02:00
execCommand-indent.txt
execCommand-insertHorizontalRule.txt
execCommand-insertHTML.txt
execCommand-insertImage.txt
execCommand-insertLinebreak.txt LibWeb: Do not rely on the layout tree for collapsed line breaks 2025-05-01 15:44:26 +03:00
execCommand-insertOrderedList.txt
execCommand-insertParagraph.txt
execCommand-insertText.txt LibWeb: Convert Editing API internals to UTF-16 2025-07-24 07:18:25 -04:00
execCommand-insertUnorderedList.txt
execCommand-italic.txt
execCommand-justifyCenter.txt LibWeb: Implement the "justifyCenter/Full/Left/Right" editing commands 2025-01-10 23:33:35 +01:00
execCommand-justifyFull.txt LibWeb: Implement the "justifyCenter/Full/Left/Right" editing commands 2025-01-10 23:33:35 +01:00
execCommand-justifyLeft.txt LibWeb: Implement the "justifyCenter/Full/Left/Right" editing commands 2025-01-10 23:33:35 +01:00
execCommand-justifyRight.txt LibWeb: Implement the "justifyCenter/Full/Left/Right" editing commands 2025-01-10 23:33:35 +01:00
execCommand-no-recursion.txt LibWeb: Refuse to recursively execute .execCommand() 2025-01-24 23:53:26 +01:00
execCommand-outdent.txt LibWeb: Implement the "outdent" editing command 2025-01-10 23:33:35 +01:00
execCommand-preserveWhitespace.txt LibWeb: Serialize CSS declarations as shorthands where applicable 2025-05-29 12:04:28 +02:00
execCommand-removeFormat.txt
execCommand-selectAll.txt LibWeb: Disallow Editing API calls on non-HTML documents 2025-01-21 19:08:37 +01:00
execCommand-strikethrough.txt
execCommand-styleWithCSS.txt LibWeb: Add tests for styleWithCSS and useCSS editing commands 2025-05-16 12:07:35 +01:00
execCommand-subscript.txt
execCommand-superscript.txt
execCommand-underline.txt
execCommand-unlink.txt
execCommand-useCSS.txt LibWeb: Add tests for styleWithCSS and useCSS editing commands 2025-05-16 12:07:35 +01:00
input-event.txt LibWeb+LibJS+Tests: Fix typos - act I 2025-04-07 11:22:13 +01:00
input-into-empty-contenteditable.txt
move-cursor-using-selection-api.txt
selection-in-contenteditable-crash-regression.txt