Tests: Update WPT test harness scripts

Doesn't affect any of our results.
This commit is contained in:
Sam Atkins
2025-04-24 11:17:45 +01:00
committed by Tim Ledbetter
parent b2d9fd3352
commit 86e1be123f
Notes: github-actions[bot] 2026-03-27 19:51:41 +00:00
3 changed files with 1476 additions and 7 deletions

View File

@@ -279,6 +279,10 @@
/**
* Create a keyDown event for the current default key source
*
* To send special keys, send the respective key's codepoint,
* as defined by `WebDriver
* <https://w3c.github.io/webdriver/#keyboard-actions>`_.
*
* @param {String} key - Key to press
* @param {String?} sourceName - Named key source to use or null for the default key source
* @returns {Actions}
@@ -292,6 +296,10 @@
/**
* Create a keyUp event for the current default key source
*
* To send special keys, send the respective key's codepoint,
* as defined by `WebDriver
* <https://w3c.github.io/webdriver/#keyboard-actions>`_.
*
* @param {String} key - Key to release
* @param {String?} sourceName - Named key source to use or null for the default key source
* @returns {Actions}