w3c / webdriver

Remote control interface that enables introspection and control of user agents.
https://w3c.github.io/webdriver/
Other
685 stars 195 forks source link

Shifted character table is incorrect for the period/full stop character #1841

Open stp-ekioh opened 2 months ago

stp-ekioh commented 2 months ago

The table entry for comma is:

"," | "<" | "Comma"

yet for full stop it is:

"." | "." | "Period"

it seems likely that this ought to be ">" rather than the second full stop? Appears to be the same in the current editor's draft version of the spec as well.

bmarroquin commented 2 months ago

The IntlBackslash code is also wrong, it has < and >(shifted) instead of \ and |(Shifted). This has been there since version 1 of the webdriver. image