The 'beforeinput' event fires when the value of an <input>, <textarea>, or contenteditable element is about to be modified. Add an 'onbeforeinput' global content attribute to make it easier for developers to use.
The 'beforeinput' event can already be utilized via addEventListener('beforeinput',...). This change makes it easier to use via element.onbeforeinput = .... It also allows testing for 'beforeinput' browser support via `document.documentElement.onbeforeinput === null`.
Explainers: https://github.com/whatwg/html/pull/7992