OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>InputEvent data should be non nullable</title> | |
foolip
2016/12/15 10:53:49
This can be upstreamed directly to imported/wpt/in
| |
3 <script src="../../../resources/testharness.js"></script> | |
4 <script src="../../../resources/testharnessreport.js"></script> | |
5 <script> | |
6 test(function() { | |
7 assert_equals(new InputEvent('type', { data: null }).data, "null"); | |
8 }, 'InputEvent.data should be non nullable'); | |
9 </script> | |
OLD | NEW |