Checkbox - onchange not triggered in Chrome Browser

When an enclosing div has an action associated to it, the checkbox’s onchange action is not triggered in Chrome browser.

In the following example, only enclosingDivAction is triggered and changeAction is not triggered.

<div {{action "enclosingDivAction"}}>
    <input type="checkbox" value={{isChecked}} onchange={{action "changeAction"}} />
</div>

But in Edge, both the actions are triggered.