-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for constructible/subclassable EventTarget
Follows whatwg/dom#467.
- Loading branch information
Showing
3 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>EventTarget is constructible and subclassable</title> | ||
<meta name="author" title="Domenic Denicola" href="mailto:d@domenic.me"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<script> | ||
"use strict"; | ||
|
||
test(() => { | ||
const target = new EventTarget(); | ||
const event = new Event("foo", { bubbles: true, cancelable: false }); | ||
let callCount = 0; | ||
|
||
function listener(e) { | ||
assert_equals(e, event); | ||
++callCount; | ||
} | ||
|
||
target.addEventListener("foo", listener); | ||
|
||
target.dispatchEvent(event); | ||
assert_equals(callCount, 1); | ||
|
||
target.dispatchEvent(event); | ||
assert_equals(callCount, 2); | ||
|
||
target.removeEventListener("foo", listener); | ||
target.dispatchEvent(event); | ||
assert_equals(callCount, 2); | ||
}, "A constructed EventTarget can be used as expected"); | ||
|
||
test(() => { | ||
class NicerEventTarget extends EventTarget { | ||
on(...args) { | ||
this.addEventListener(...args); | ||
} | ||
|
||
off(...args) { | ||
this.removeEventListener(...args); | ||
} | ||
|
||
dispatch(type, detail) { | ||
this.dispatchEvent(new CustomEvent(type, { detail })); | ||
} | ||
} | ||
|
||
const target = new NicerEventTarget(); | ||
const event = new Event("foo", { bubbles: true, cancelable: false }); | ||
let callCount = 0; | ||
|
||
function listener(e) { | ||
assert_equals(e.detail, detail); | ||
++callCount; | ||
} | ||
|
||
target.on("foo", listener); | ||
|
||
target.dispatch("foo", detail); | ||
assert_equals(callCount, 1); | ||
|
||
target.dispatch("foo", detail); | ||
assert_equals(callCount, 2); | ||
|
||
target.off("foo", listener); | ||
target.dispatch("foo", detail); | ||
assert_equals(callCount, 2); | ||
}, "EventTarget can be subclassed"); | ||
|
||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters