diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/uievents/interface/click-event.htm | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/uievents/interface/click-event.htm')
-rw-r--r-- | testing/web-platform/tests/uievents/interface/click-event.htm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/uievents/interface/click-event.htm b/testing/web-platform/tests/uievents/interface/click-event.htm new file mode 100644 index 0000000000..b45dc29063 --- /dev/null +++ b/testing/web-platform/tests/uievents/interface/click-event.htm @@ -0,0 +1,32 @@ +<!doctype html> +<html> + <head> + <title>Click event is a PointerEvent</title> + <link rel="help" href="https://github.com/w3c/pointerevents/pull/317"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + </head> + <body> + <div id='clicktarget'></div> + <div id="log"></div> + <script type="text/javascript"> + var clicktarget = document.querySelector("#clicktarget"); + var t = async_test("synthetic click event is a PointerEvent"); + clicktarget.addEventListener('click', t.step_func(function (e) { + assert_equals(e.constructor, window.PointerEvent, "Click is a PointerEvent"); + assert_true(e instanceof window.PointerEvent, "Click is an instance of PointerEvent"); + // Since this click is not generated by a pointing device, pointerId must have + // the reserved value -1, and pointerType must have the default empty string + assert_equals(e.pointerId, -1, "Click's pointerId has the default value of -1"); + assert_equals(e.pointerType, "", "Click's pointerType has the default value of empty string"); + assert_equals(e.screenX, 0, "Click's screenX coordinate should not be set."); + assert_equals(e.screenY, 0, "Click's screenY coordinate should not be set."); + assert_equals(e.clientX, 0, "Click's clientX coordinate should not be set."); + assert_equals(e.clientY, 0, "Click's clientY coordinate should not be set."); + assert_equals(e.detail, 0, "element.click click event should not populate click count"); + t.done(); + })); + document.querySelector('#clicktarget').click(); + </script> + </body> +</html> |