summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/activation/click_checkbox.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/html/editing/activation/click_checkbox.html')
-rw-r--r--testing/web-platform/tests/html/editing/activation/click_checkbox.html23
1 files changed, 23 insertions, 0 deletions
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>