Index: experimental/SkV8Example/sample.js |
diff --git a/experimental/SkV8Example/sample.js b/experimental/SkV8Example/sample.js |
deleted file mode 100644 |
index 81c717c7e822f9fecb1091dc03b6e0b2000cf5cf..0000000000000000000000000000000000000000 |
--- a/experimental/SkV8Example/sample.js |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-/** |
- * @fileoverview Sample onDraw script for use with SkV8Example. |
- */ |
-var onDraw = function(){ |
- var tick = 0; |
- function f(context) { |
- tick += 0.1; |
- context.fillStyle = '#0000ff'; |
- context.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100); |
- }; |
- return f; |
-}(); |
- |
-function onTimeout() { |
- inval(); |
- print(setTimeout(onTimeout, 33)); |
-} |
- |
-setTimeout(onTimeout, 33); |