Implemented "a", "A". Added unit test for SVG "tiger" path (the canonical SVG example)

This commit is contained in:
Jason Follas
2012-06-05 23:56:46 -04:00
parent e74fa3a319
commit b61c688a83
4 changed files with 389 additions and 15 deletions

View File

@@ -1,17 +1,18 @@
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-core.js"></script>
<script src="../assets/worldMap.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/unitTests.js"></script>
<script>
<head>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-core.js"></script>
<script src="../assets/worldMap.js"></script>
<script src="../assets/tiger.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/unitTests.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
};
</script>
</head>
<body onmousedown="return false;"></body>
</script>
</head>
<body onmousedown="return false;"></body>
</html>