touch-tests.js revision 31689fe47c538a80973e2d32445b844f609fc5b8
noop = function() {},
name: 'Touch',
setUp: function() {
var touches = [
{
pageX: 100,
pageY: 100
}
];
var event = new Y.DOMEventFacade({
type: 'touch',
scale: 1,
rotation: 1,
identifier: 'foobar',
pageX: 100,
pageY: 100,
}, node.getDOMNode());
},
'test: touch init': function() {
},
'test: touch properties': function() {
},
'test: touch nodes': function() {
},
_should: {
ignore: {
// event-touch doesn't make sense on IE 6,7,8 and needs to account for the inclusion of event-base-ie
// which modifies Y.DOMEventFacade - which is another issue
}
}
}));
});