diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2015-11-06 09:59:14 -0500 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2015-11-06 10:00:46 -0500 |
commit | 2cb8ebadcb77da1c1a12c07bc5274fd456bf3b01 (patch) | |
tree | 44d5ace7d1afcb3cf57ff3c1f6102f7b8f164527 /test/data/event | |
parent | c9935b6d2db9e1be4bed12f7419e98cdca45763e (diff) | |
download | jquery-2cb8ebadcb77da1c1a12c07bc5274fd456bf3b01.tar.gz jquery-2cb8ebadcb77da1c1a12c07bc5274fd456bf3b01.zip |
Event: Make event aliases optional in unit tests
Diffstat (limited to 'test/data/event')
-rw-r--r-- | test/data/event/focusElem.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/event/focusElem.html b/test/data/event/focusElem.html index 10726b4ff..a9a976518 100644 --- a/test/data/event/focusElem.html +++ b/test/data/event/focusElem.html @@ -9,7 +9,7 @@ <body> <a href="#" id="frame-link"></a> <script> - jQuery("#frame-link").focus(); + jQuery( "#frame-link" ).trigger( "focus" ); window.parent.iframeCallback( true ); </script> </body> |