You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should UAs allow authors to set the dropEffect value to any valid value?
If authors can set the dropEffect value, should UAs reflect that choice in the visual drop effect? For example, in dragenter event, if effectAllowed is copyMove and UA’s preferred value is copy but web author sets it to move, should this be reflected in attribute value?
The text was updated successfully, but these errors were encountered:
On setting, if the new value is one of "none", "copy", "link", or "move", then the attribute's current value must be set to the new value. Other values must be ignored.
And then if you look further on in the processing model you'll find that there is some branching on the current value.
The drag and drop spec specifies how the dropEffect value should be set by UAs for different events here: https://html.spec.whatwg.org/multipage/dnd.html#dndevents. However, the spec is not explicit about the following:
The text was updated successfully, but these errors were encountered: