Lines Matching refs:out
35 function mouse(target, out) {
36 var eventname = (out) ? 'mouseout' : 'mouseover',
47 if (out) {
73 "test node.on('hover', over, out)": function () {
95 function out(e) {
106 target.on('hover', over, out);
142 Y.Assert.areSame('out', outPhase);
149 "test container.on('hover', over, out)": function () {
171 function out(e) {
182 target.on('hover', over, out);
218 Y.Assert.areSame('out', outPhase);
225 "test Y.on('hover', over, out, '#foo')": function () {
247 function out(e) {
258 Y.on('hover', over, out, '#item1');
294 Y.Assert.areSame('out', outPhase);
301 "test nodelist.on('hover', over, out)": function () {
335 function out(e) {
346 Y.all('#items li').on('hover', over, out);
362 Y.ArrayAssert.itemsAreSame(['out'], outPhase);
383 Y.ArrayAssert.itemsAreSame(['out','out','out'], outPhase);
390 "test node.delegate('hover', over, out, filter)": function () {
429 function out(e) {
441 items.delegate('hover', over, out, 'li');
458 Y.ArrayAssert.itemsAreSame(['out'], outPhase);
481 Y.ArrayAssert.itemsAreSame(['out','out','out'], outPhase);
489 "test node.on('hover', over, out, thisObj)": function () {
513 function out(e) {
525 target.on('hover', over, out, obj);
542 Y.Assert.areSame('out', outPhase);
550 "test Y.on('hover', over, out, '#foo', thisObj)": function () {
574 function out(e) {
586 Y.on('hover', over, out, '#item1', obj);
603 Y.Assert.areSame('out', outPhase);
611 "test nodelist.on('hover', over, out, thisObj)": function () {
649 function out(e) {
661 Y.all('#items li').on('hover', over, out, obj);
677 Y.ArrayAssert.itemsAreSame(['out'], outPhase);
698 Y.ArrayAssert.itemsAreSame(['out','out','out'], outPhase);
705 "test node.on('hover', over, out, thisObj, arg)": function () {
730 function out(e, x) {
743 target.on('hover', over, out, obj, "arg!");
761 Y.Assert.areSame('out', outPhase);
770 "test Y.on('hover', over, out, '#foo', thisObj, arg)": function () {
795 function out(e, x) {
808 Y.on('hover', over, out, "#item1", obj, "arg!");
826 Y.Assert.areSame('out', outPhase);
835 "test nodelist.on('hover', over, out, thisObj, arg)": function () {
876 function out(e, x) {
889 Y.all('#items li').on('hover', over, out, obj, 'arg!');
907 Y.ArrayAssert.itemsAreSame(['out'], outPhase);
931 Y.ArrayAssert.itemsAreSame(['out','out','out'], outPhase);
939 "test node.on('hover', over, out, null, arg)": function () {
962 function out(e, x) {
974 target.on('hover', over, out, null, "arg!");
991 Y.Assert.areSame('out', outPhase);
999 "test Y.on('hover', over, out, '#foo', null, arg)": function () {
1022 function out(e, x) {
1034 Y.on('hover', over, out, '#item1', null, "arg!");
1051 Y.Assert.areSame('out', outPhase);
1059 "test nodelist.on('hover', over, out, null, arg": function () {
1096 function out(e, x) {
1108 Y.all('#items li').on('hover', over, out, null, 'arg!');
1125 Y.ArrayAssert.itemsAreSame(['out'], outPhase);
1148 Y.ArrayAssert.itemsAreSame(['out','out','out'], outPhase);
1166 "test node.on('hover', over, out); node.detach('hover');": function () {
1172 function out() { outCount++; }
1174 target.on('hover', over, out);
1189 "test node.on('hover', over, out); node.detach('hover', over);": function () {
1195 function out() { outCount++; }
1197 target.on('hover', over, out);
1212 "test node.on('cat|hover', over, out); node.detach('cat|hover');": function () {
1218 function out() { outCount++; }
1220 target.on('cat|hover', over, out);
1235 "test node.on('cat|hover', over, out); node.detach('cat|*');": function () {
1241 function out() { outCount++; }
1243 target.on('cat|hover', over, out);
1258 "test node.on('hover', over, out); handle.detach();": function () {
1262 out = function () { outCount++; },
1263 handle = Y.one('#item1').on('cat|hover', over, out);
1278 "test node.delegate('hover', over, out, filter); node.detach('hover');": function () {
1284 function out() { outCount++; }
1286 target.delegate('hover', over, out, 'li');
1305 "test node.delegate('hover', over, out, filter); node.detach('hover', over);": function () {
1311 function out() { outCount++; }
1313 target.delegate('hover', over, out, 'li');
1332 "test node.delegate('cat|hover', over, out, filter); node.detach('cat|hover');": function () {
1338 function out() { outCount++; }
1340 target.delegate('cat|hover', over, out, 'li');
1359 "test node.delegate('cat|hover', over, out, filter); node.detach('cat|*');": function () {
1365 function out() { outCount++; }
1367 target.delegate('cat|hover', over, out, 'li');
1386 "test node.delegate('hover', over, out, filter); handle.detach();": function () {
1390 out = function () { outCount++; },
1391 handle = Y.one('#items').delegate('cat|hover', over, out, 'li');