diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/html/editing/activation | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/html/editing/activation')
-rw-r--r-- | testing/web-platform/tests/html/editing/activation/click.html | 18 | ||||
-rw-r--r-- | testing/web-platform/tests/html/editing/activation/click_checkbox.html | 23 |
2 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/activation/click.html b/testing/web-platform/tests/html/editing/activation/click.html new file mode 100644 index 0000000000..edbc477db6 --- /dev/null +++ b/testing/web-platform/tests/html/editing/activation/click.html @@ -0,0 +1,18 @@ +<!doctype html> +<meta charset=utf-8> +<title>HTMLElement#click</title> +<script src=/resources/testharness.js></script> +<script src=/resources/testharnessreport.js></script> +<div id=log></div> +<script> +test(function() { + var element = document.createElement("div"); + var received = false; + element.addEventListener("click", this.step_func(function(e) { + received = true; + assert_false(e.isTrusted, "Event should not be trusted") + })); + element.click(); + assert_true(received, "click event should have been dispatched synchronously"); +}) +</script> diff --git a/testing/web-platform/tests/html/editing/activation/click_checkbox.html b/testing/web-platform/tests/html/editing/activation/click_checkbox.html new file mode 100644 index 0000000000..ab81cbf063 --- /dev/null +++ b/testing/web-platform/tests/html/editing/activation/click_checkbox.html @@ -0,0 +1,23 @@ +<!doctype html> +<title>Interaction of UI input and the click in progress flag</title> +<script src=/resources/testharness.js></script> +<script src=/resources/testharnessreport.js></script> +<script src="/resources/testdriver.js"></script> +<script src="/resources/testdriver-actions.js"></script> +<script src="/resources/testdriver-vendor.js"></script> +<p>When you mouse click the checkbox below it should not be checked:</p> +<p><input type=checkbox onclick=this.click() id="target"></p> +<p>Now keyboard "click" the checkbox and confirm it's still not checked.</p> +<script> +promise_test(async t => { + var target = document.getElementById("target"); + var received = false; + target.addEventListener("click", t.step_func(function(e) { + received = true; + assert_false(target.checked, "The checkbox should not be checked") + })); + + await test_driver.click(target); + assert_true(received, "click event should have been dispatched synchronously"); +}); +</script> |