auto merge of #4736 : mattnenterprise/servo/dispatch_input_event, r=jdm

This commit is contained in:
bors-servo 2015-03-17 22:27:47 -06:00
commit 65d4b12bf2
3 changed files with 64 additions and 10 deletions

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<textarea id="textarea">
</textarea>
</body>
<script>
var area = document.getElementById('textarea');
area.addEventListener('input', function() {
alert('input detected');
});
</script>
</html>