jquery/test
Michał Gołębiowski-Owczarek 37bded3522
Event: Increase robustness of an inner native event in leverageNative
In Firefox, alert displayed just before blurring an element dispatches
the native blur event twice which tripped the jQuery logic if a jQuery blur
handler was not attached before the trigger call.

This was because the `leverageNative` logic part for triggering first checked if
setup was done before (which, for example, is done if a jQuery handler was
registered before for this element+event pair) and - if it was not - added
a dummy handler that just returned `true`. The `leverageNative` logic made that
`true` then saved into private data, replacing the previous `saved` array. Since
`true` passed the truthy check, the second native inner handler treated `true`
as an array, crashing on the `slice` call.

The same issue could happen if a handler returning `true` is attached before
triggering. A bare `length` check would not be enough as the user handler may
return an array-like as well. To remove this potential data shape clash, capture
the inner result in an object with a `value` property instead of saving it
directly.

Since it's impossible to call `alert()` in unit tests, simulate the issue by
replacing the `addEventListener` method on a test button with a version that
calls attached blur handlers twice.

Fixes gh-5459
Closes gh-5466
Ref gh-5236

(cherry picked from commit 527fb3dcf0)
2024-05-20 18:05:38 +02:00
..
data Tests: Make the beforeunload event tests work regardless of extensions 2024-04-25 00:25:27 +02:00
integration Event: Fix delegated radio events when arrow keys are used 2015-10-18 13:06:37 -04:00
node_smoke_tests Build: migrate most grunt tasks off of grunt (3.x) 2023-09-20 18:18:42 -04:00
promises_aplus_adapters Build: migrate most grunt tasks off of grunt (3.x) 2023-09-20 18:18:42 -04:00
runner Tests: share queue/browser handling for all worker types 2024-04-01 12:34:13 -04:00
unit Event: Increase robustness of an inner native event in leverageNative 2024-05-20 18:05:38 +02:00
delegatetest.html Core: Simplify code post browser support reduction 2023-09-20 00:59:32 +02:00
hovertest.html Ref #13316: Sync all documents on full vs. minified source. Close gh-1147. 2013-02-07 15:16:28 -05:00
index.html Tests: migrate testing infrastructure to minimal dependencies 2024-03-05 13:53:39 -05:00
jquery.js Tests: migrate testing infrastructure to minimal dependencies 2024-03-05 13:53:39 -05:00
middleware-mockserver.js Build: drop support for Node 10 2024-03-09 10:36:33 -05:00
networkerror.html Docs: Replace #NUMBER Trac issue references with trac-NUMBER 2022-01-12 23:23:10 +01:00
xhtml.php Added a way to run the test suite as an XHTML page. 2009-01-19 18:14:51 +00:00