aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2015-11-07 15:51:03 -0500
committerDave Methvin <dave.methvin@gmail.com>2015-11-07 15:51:03 -0500
commit67fa2eab6ef323b1d894e9e7f054c6e8c844d304 (patch)
treeb46b97c71022e9d22aba2e6da7edadde743e7797
parent7d44d7f9e7cb73ff2b373f08cea13ea9958bb462 (diff)
downloadjquery-67fa2eab6ef323b1d894e9e7f054c6e8c844d304.tar.gz
jquery-67fa2eab6ef323b1d894e9e7f054c6e8c844d304.zip
Event: Move VML test out of event alias test
Ref gh-2693
-rw-r--r--test/unit/event.js20
1 files changed, 15 insertions, 5 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index 619307567..12a2b0a5f 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -2833,11 +2833,6 @@ QUnit[ jQuery.fn.click ? "test" : "skip" ]( "trigger() shortcuts", function( ass
};
jQuery( "#simon1" ).click();
assert.equal( clickCounter, 1, "Check that click, triggers onclick event handler on an a tag also" );
-
- // test that special handlers do not blow up with VML elements (#7071)
- jQuery( "<xml:namespace ns='urn:schemas-microsoft-com:vml' prefix='v' />" ).appendTo( "head" );
- jQuery( "<v:oval id='oval' style='width:100pt;height:75pt;' fillcolor='red'> </v:oval>" ).appendTo( "#form" );
- jQuery( "#oval" ).click().keydown();
} );
QUnit[ jQuery.fn.click ? "test" : "skip" ]( "Event aliases", function( assert ) {
@@ -2858,6 +2853,21 @@ QUnit[ jQuery.fn.click ? "test" : "skip" ]( "Event aliases", function( assert )
} );
} );
+// Support: IE9 (remove when IE9 is no longer supported)
+// https://msdn.microsoft.com/en-us/library/hh801223(v=vs.85).aspx
+QUnit.test( "VML with special event handlers (trac-7071)", function( assert ) {
+ assert.expect( 1 );
+
+ var ns = jQuery( "<xml:namespace ns='urn:schemas-microsoft-com:vml' prefix='v' />" ).appendTo( "head" );
+
+ jQuery( "<v:oval id='oval' style='width:100pt;height:75pt;' fillcolor='red'> </v:oval>" ).appendTo( "#form" );
+ jQuery( "#form" ).on( "keydown", function() {
+ assert.ok( true, "no error was thrown" );
+ } );
+ jQuery( "#oval" ).trigger( "click" ).trigger( "keydown" );
+ ns.remove();
+} );
+
// These tests are unreliable in Firefox
if ( !( /firefox/i.test( window.navigator.userAgent ) ) ) {
QUnit.test( "Check order of focusin/focusout events", function( assert ) {