Skip to content

Commit d5c505e

Browse files
authored
Event: Only attach events to objects that accept data - for real
There was a check in jQuery.event.add that was supposed to make it a noop for objects that don't accept data like text or comment nodes. The problem was the check was incorrect: it assumed `dataPriv.get( elem )` returns a falsy value for an `elem` that doesn't accept data but that's not the case - we get an empty object then. The check was changed to use `acceptData` directly. Fixes gh-4397 Closes gh-4558
1 parent 5a3e066 commit d5c505e

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/event.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import documentElement from "./var/documentElement.js";
44
import rnothtmlwhite from "./var/rnothtmlwhite.js";
55
import rcheckableType from "./var/rcheckableType.js";
66
import slice from "./var/slice.js";
7+
import acceptData from "./data/var/acceptData.js";
78
import dataPriv from "./data/var/dataPriv.js";
89
import nodeName from "./core/nodeName.js";
910

@@ -109,8 +110,8 @@ jQuery.event = {
109110
special, handlers, type, namespaces, origType,
110111
elemData = dataPriv.get( elem );
111112

112-
// Don't attach events to noData or text/comment nodes (but allow plain objects)
113-
if ( !elemData ) {
113+
// Only attach events to objects that accept data
114+
if ( !acceptData( elem ) ) {
114115
return;
115116
}
116117

test/unit/event.js

+9
Original file line numberDiff line numberDiff line change
@@ -2811,6 +2811,15 @@ QUnit.test( "preventDefault() on focusin does not throw exception", function( as
28112811
}, QUnit.config.testTimeout / 4 || 1000 );
28122812
} );
28132813

2814+
QUnit.test( ".on('focus', fn) on a text node doesn't throw", function( assert ) {
2815+
assert.expect( 1 );
2816+
2817+
jQuery( document.createTextNode( "text" ) )
2818+
.on( "focus", function() {} );
2819+
2820+
assert.ok( true, "No crash" );
2821+
} );
2822+
28142823
QUnit.test( "Donor event interference", function( assert ) {
28152824
assert.expect( 8 );
28162825

0 commit comments

Comments
 (0)