Sha256: e0d89e8c106c6549630eb0631abc89b3c318ab105b21f1b911af87c68a1cd2f6

Contents?: true

Size: 1.59 KB

Versions: 11

Compression:

Stored size: 1.59 KB

Contents

module("Key Events");

// test each of the following events
$.each([
	"keydown","keyup","keypress"
],function( i, type ){
	// test each event type
	test( '"'+ type +'"', function(){
		expect( i < 2 ? 27 : 30 );
		
		// custom event properties
		var props = {
			keyCode: Math.round( Math.random() * 256 ),
			charCode: Math.round( Math.random() * 256 ),
			ctrlKey: Math.round( Math.random() ) ? true : false, 
			altKey: Math.round( Math.random() ) ? true : false, 
			shiftKey: Math.round( Math.random() ) ? true : false 
		},
		// new test element
		$div = $('<div/>').appendTo( document.body );
		// test the document too for bubbling
		$div.add( document ).bind( type, function( ev ){
			
			equals( ev.currentTarget, this, "event.currentTarget");
			equals( ev.target, $div[0], "event.target" );
			equals( ev.type, type, "event.type" );
			equals( ev.keyCode, props.keyCode, "event.keyCode" );
			if ( type == "keypress" ){
				equals( ev.charCode, props.charCode, "event.charCode" );
			}
			equals( ev.ctrlKey, props.ctrlKey, "event.ctrlKey" );
			equals( ev.altKey, props.altKey, "event.altKey" );
			equals( ev.shiftKey, props.shiftKey, "event.shiftKey" );
			equals( ev.metaKey, props.metaKey, "event.metaKey" );
			equals( ev.bubbles, props.bubbles, "event.bubbles" );
		});
		
		// make sure that metaKey and ctrlKey are equal
		props.metaKey = props.ctrlKey;
		// fire the event with bubbling
		props.bubbles = true;
		$div.fire( type, props );
		
		// fire the event without bubbling
		props.bubbles = false;
		$div.fire( type, props );
	
		// cleanup
		$( document ).unbind( type );
		$div.remove();
	});
});

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bonethug-0.0.17 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.16 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.15 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.14 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.13 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.12 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.11 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.10 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.7 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.6 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js
bonethug-0.0.5 skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js