diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-upstream/125.0.1.tar.xz firefox-upstream/125.0.1.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html')
-rw-r--r-- | testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html b/testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html new file mode 100644 index 0000000000..4b02719ea0 --- /dev/null +++ b/testing/web-platform/tests/editing/other/delete-in-shadow-hosted-in-body.html @@ -0,0 +1,81 @@ +<!doctype html> +<html> +<head> +<meta charset="utf-8"> +<title>Delete editor in a shadow</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/resources/testdriver.js"></script> +<script src="/resources/testdriver-vendor.js"></script> +<script src="/resources/testdriver-actions.js"></script> +<script src="../include/editor-test-utils.js"></script> +<script> +"use strict"; + +addEventListener("load", () => { + const shadowRoot = document.body.attachShadow({mode: "open"}); + for (const tag of ["input", "textarea"]) { + promise_test(async t => { + const textControl = document.createElement(tag); + textControl.value = "text"; + shadowRoot.appendChild(textControl); + textControl.focus(); + textControl.selectionStart = textControl.value.length; + const utils = new EditorTestUtils(textControl); + await utils.sendBackspaceKey(); + assert_equals( + textControl.value, + "tex", + `Backspace in ${t.name} should delete character before the caret` + ); + textControl.value = "text"; + textControl.selectionStart = textControl.selectionEnd = 0; + await utils.sendDeleteKey(); + assert_equals( + textControl.value, + "ext", + `Delete in ${t.name} should delete character after the caret` + ); + textControl.value = "text"; + textControl.select(); + await utils.sendBackspaceKey(); + assert_equals( + textControl.value, + "", + `Backspace after selecting all text in ${t.name} should delete all text` + ); + }, `<${tag}> in shadow of the <body>`); + } + + promise_test(async t => { + const editingHost = document.createElement("div"); + editingHost.setAttribute("contenteditable", ""); + shadowRoot.appendChild(editingHost); + const utils = new EditorTestUtils(editingHost); + utils.setupEditingHost("text[]"); + await utils.sendBackspaceKey(); + assert_equals( + editingHost.textContent, + "tex", + `Backspace in ${t.name} should delete character before the caret` + ); + utils.setupEditingHost("[]text"); + await utils.sendDeleteKey(); + assert_equals( + editingHost.textContent, + "ext", + `Delete in ${t.name} should delete character after the caret` + ); + utils.setupEditingHost("[text]"); + await utils.sendBackspaceKey(); + assert_equals( + editingHost.textContent, + "", + `Backspace after selecting all text in ${t.name} should delete all text` + ); + }, "<div contenteditable> in shadow of the <body>"); +}, {once: true}); +</script> +</head> +<body></body> +</html> |