Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/the-button-element/command-and-commandfor/generic-eventtarget-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8" />
<meta name="author" title="Keith Cirkel" href="mailto:wpt@keithcirkel.co.uk" />
<div id="target"></div>
<script type="module">
const commandEvent = new CommandEvent('command', { bubbles: true });
document.body.addEventListener('command', e => {
e.source.toString();
});
target.addEventListener('command', e => {
e.source.toString();
});
target.dispatchEvent(commandEvent);
await Promise.resolve();
commandEvent.source.toString();
</script>