summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html')
-rw-r--r--testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html138
1 files changed, 138 insertions, 0 deletions
diff --git a/testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html b/testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html
new file mode 100644
index 0000000000..2cdffd6e2c
--- /dev/null
+++ b/testing/web-platform/tests/editing/other/edit-in-textcontrol-immediately-after-hidden.tentative.html
@@ -0,0 +1,138 @@
+<!doctype html>
+<meta charset=utf-8>
+<meta name="variant" content="?editor=input&hide-target=editor">
+<meta name="variant" content="?editor=textarea&hide-target=editor">
+<meta name="variant" content="?editor=input&hide-target=parent">
+<meta name="variant" content="?editor=textarea&hide-target=parent">
+<title>Testing edit action in zombie editor</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>
+<body>
+<script>
+"use strict";
+
+const params = new URLSearchParams(location.search);
+
+/**
+ * The expected results is based on Chrome 93.
+ * The behavior is reasonable because JS API which requires focus and user input
+ * does not work if it's hidden.
+ */
+
+function init() {
+ const div = document.createElement("div");
+ const editor = document.createElement(params.get("editor"));
+ const hideTarget = params.get("hide-target") == "editor" ? editor : div;
+ editor.value = "default value";
+ div.appendChild(editor);
+ document.body.appendChild(div);
+ return [ hideTarget, editor ];
+}
+
+function finalize(editor) {
+ editor.blur();
+ editor.parentNode.remove();
+ document.body.getBoundingClientRect();
+}
+
+promise_test(async () => {
+ await new Promise(resolve => addEventListener("load", resolve, {once: true}));
+}, "Wait for load event");
+
+promise_test(async () => {
+ const [hideTarget, editor] = init();
+ try {
+ editor.select();
+ hideTarget.style.display = "none";
+ document.execCommand("insertText", false, "typed value");
+ assert_equals(editor.value, "default value", "The value shouldn't be modified by \"insertText\" command");
+ } finally {
+ finalize(editor);
+ }
+}, `execCommand("insertText", false, "typed value") in <${params.get("editor")}>`);
+
+promise_test(async () => {
+ const [hideTarget, editor] = init();
+ try {
+ editor.select();
+ hideTarget.style.display = "none";
+ document.execCommand("delete");
+ assert_equals(editor.value, "default value", "The value shouldn't be modified by \"delete\" command");
+ } finally {
+ finalize(editor);
+ }
+}, `execCommand("delete") in <${params.get("editor")}>`);
+
+promise_test(async () => {
+ const [hideTarget, editor] = init();
+ try {
+ editor.select();
+ const waitForKeyDown = new Promise(resolve => {
+ editor.addEventListener("keydown", () => {
+ hideTarget.style.display = "none";
+ resolve();
+ });
+ });
+ await new test_driver.Actions()
+ .keyDown("a").keyUp("a")
+ .send();
+ assert_equals(
+ editor.value,
+ "default value",
+ "The value shouldn't be modified by user input if \"keydown\" event listener destroyed the editor"
+ );
+ } finally {
+ finalize(editor);
+ }
+}, `<${params.get("editor")}> is hidden by "keydown" event listener`);
+
+promise_test(async () => {
+ const [hideTarget, editor] = init();
+ try {
+ editor.select();
+ const waitForKeyDown = new Promise(resolve => {
+ editor.addEventListener("keypress", () => {
+ hideTarget.style.display = "none";
+ resolve();
+ });
+ });
+ await new test_driver.Actions()
+ .keyDown("a").keyUp("a")
+ .send();
+ assert_equals(
+ editor.value,
+ "default value",
+ "The value shouldn't be modified by user input if \"keypress\" event listener destroyed the editor"
+ );
+ } finally {
+ finalize(editor);
+ }
+}, `<${params.get("editor")}> is hidden by "keypress" event listener`);
+
+promise_test(async () => {
+ const [hideTarget, editor] = init();
+ try {
+ editor.select();
+ const waitForKeyDown = new Promise(resolve => {
+ editor.addEventListener("beforeinput", () => {
+ hideTarget.style.display = "none";
+ resolve();
+ });
+ });
+ await new test_driver.Actions()
+ .keyDown("a").keyUp("a")
+ .send();
+ assert_equals(
+ editor.value,
+ "default value",
+ "The value shouldn't be modified by user input if \"beforeinput\" event listener destroyed the editor"
+ );
+ } finally {
+ finalize(editor);
+ }
+}, `<${params.get("editor")}> is hidden by "beforeinput" event listener`);
+</script>
+</body>