[css-ui] css-counter-styles or cursor value regex allowing contradictive choice

Hello

https://www.w3.org/TR/css-ui-3/#propdef-cursor

The value-regex to the property cursor says that it's ok to declare
both an URI and 'none', if I'm right. This will not cause an error but
could be fixed (see below!!!) Is there a comma between URI and keyword?

Your take:

[ [<url> [<x> <y>]?,]*
[ auto | default | none | /* possibly this line should be exclusive */
context-menu | help | pointer | progress | wait |
cell | crosshair | text | vertical-text |
alias | copy | move | no-drop | not-allowed | grab | grabbing |
e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize |
sw-resize | w-resize | ew-resize | ns-resize | nesw-resize |
nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out
] ] 

My take:

auto | default | none |
[<url> [<x> <y>]? [, <url> [<x> <y>]?]*]?
[
context-menu | help | pointer | progress | wait |
cell | crosshair | text | vertical-text |
alias | copy | move | no-drop | not-allowed | grab | grabbing |
e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize |
sw-resize | w-resize | ew-resize | ns-resize | nesw-resize |
nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out
] 


Regards,
---------------------------------------------------------------------
Dennis Heuer
einz@verschwendbare-verweise.seinswende.de

Received on Sunday, 14 January 2018 23:56:12 UTC