Prevent Input event on TextInput when type to input element

        Chrome/Edge. Typing is prevented and Input event is not raised
        IE11/Firefox. Typing is not prevented. Input event is raised
    

Prevent Input event and typing on simple ContentEditable div

        Chrome/Edge. Typing is prevented. Input event is not raised
        IE11/Firefox. Typing is not prevented.
        Input event is raised in firefox but is not raised in IE11 - it's a IE11 bug
    

Prevent Input event on TextInput event when type to element node

        Not for IE11 because preventDefault will not prevent typing
        Not for Firefox because Firefox does not support TextInput event
    


Modify text node of ContentEditable div on TextInput event and prevent Input event

        Not for IE11 because is's not possible to prevent typing in IE11
        Not for Firefox because Firefox does not support TextInput event
    

A

Type to ContentEditable div when selected node was replaced on TextInput event

        Not for IE11 because this test emulates behavior from https://github.com/DevExpress/testcafe/issues/1956.
        This behavior is different in IE11
        Not for Firefox because Firefox does not support TextInput event
    

B