mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] customEvent.html
This commit is contained in:
parent
b9d266c52c
commit
b67d41bd82
12
test/ecmascript/assert/customEvent.html
Normal file
12
test/ecmascript/assert/customEvent.html
Normal file
@ -0,0 +1,12 @@
|
||||
<script>
|
||||
var e = new CustomEvent('message', { cancelable: true, detail: {name:"cat"}});
|
||||
|
||||
console.error('customEvent.html');
|
||||
console.assert(e.cancelable, 'cancelable')
|
||||
console.assert(!e.defaultPrevented, 'defaultPrevented false');
|
||||
e.preventDefault();
|
||||
console.assert(e.defaultPrevented, 'defaultPrevented true');
|
||||
console.assert(e.type === 'message', 'message');
|
||||
console.assert(e.detail.name == 'cat', 'detail');
|
||||
console.exit(0);
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user