The spec currently lists IDL attributes for onselectstart and onselectionchange here: https://w3c.github.io/selection-api/#extensions-to-globaleventhandlers
Someone found the onselectionchange content attribute is not currently interoperable between browsers. Consider the following:
<div id=parent onselectionchange="console.log('parent onselectionchange')">
<input onselectionchange="console.log('input onselectionchange')">
</div>
Firefox and Safari will attach selectionchange event listeners for both elements, but chrome does neither. I'd be happy to implement this in chrome if the spec is updated to explicitly say that we should have global onselectionchange content attributes in addition to IDL attributes.
I suspect that onselectstart has the same interop issue right now.