JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script>
<div ng-app ng-controller="x">
    <input ng-cut="cut($event)" ng-keydown="kp($event)" />
</div>

<input oncut="return false;" >

JavaScript

function x($scope) {
    $scope.cut = function ($event) {
        $event.returnValue = false;
        console.log('cut', $event);
    }
    $scope.kp = function ($event) {
        console.log('keypress', $event);
        return false;
    }
}