konva/tests/html/functionalTests.html
2012-06-21 21:46:52 -07:00

33 lines
1005 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style>
/* overwrite CSS */
.green {
position: absolute;
top: 0px;
}
.row {
position: absolute;
top: 18px;
}
</style>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-core.js"></script>
<script src="../assets/functionalDataUrls.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/functionalTests.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>
</head>
<body onmousedown="return false;"></body>
</html>