diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/html/editing/activation | |
parent | Initial commit. (diff) | |
download | firefox-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/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> |