We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ce078 commit 399654fCopy full SHA for 399654f
lib/internal/event_target.js
@@ -306,7 +306,7 @@ class Event {
306
if (!isEvent(this))
307
throw new ERR_INVALID_THIS('Event');
308
if (value) {
309
- this.stopPropagation();
+ this.#propagationStopped = true;
310
}
311
312
test/parallel/test-eventtarget.js
@@ -738,3 +738,10 @@ let asyncTest = Promise.resolve();
738
controller.abort();
739
et.dispatchEvent(new Event('foo'));
740
741
+
742
+{
743
+ const event = new Event('foo');
744
+ strictEqual(event.cancelBubble, false);
745
+ event.cancelBubble = true;
746
+ strictEqual(event.cancelBubble, true);
747
+}
0 commit comments