Skip to content

Commit bd73517

Browse files
committed
test: enable passive listener tests after implementation fix
Remove skip() call from passive listener tests as the DOM passive listener specification is now properly implemented. The tests now pass with the correct preventDefault() behavior when listeners are marked as passive.
1 parent e1f5ee4 commit bd73517

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/parallel/test-whatwg-events-add-event-listener-options-passive.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ const {
5858
testPassiveValue({}, true);
5959
testPassiveValue({ passive: false }, true);
6060

61-
common.skip('TODO: passive listeners is still broken');
6261
testPassiveValue({ passive: 1 }, false);
6362
testPassiveValue({ passive: true }, false);
6463
testPassiveValue({ passive: 0 }, true);

0 commit comments

Comments
 (0)