refactored ancestor comparison logic to ensure that container handlers aren't incorrectly executed for mouseover mouseout. Fixed up functional tests

This commit is contained in:
Eric Rowell
2012-08-16 22:03:39 -07:00
parent 6a58830df3
commit 9cdbadc4fd
6 changed files with 54 additions and 331 deletions

View File

@@ -23,7 +23,7 @@
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
console.log(evt.clientX + ',' + evt.clientY);
//console.log(evt.clientX + ',' + evt.clientY);
}, false);
};